Answer the question
In order to leave comments, you need to log in
How to remove prefix from all files?
You need to remove the prefix from all files in the directory, for example [email protected]
. How can I do that?
Answer the question
In order to leave comments, you need to log in
RENAME "[email protected]*" "/////*"
remove the same part of a file name for many files
If in a batch file, then you can
ren "[email protected]*" " *"
for %%i in (" *") do for /f "tokens=*" %%j in ("%%i") do ren "%%i" "%%j"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question