My Problem is this:
I want to replace every Special character such as "@" in file names.
Example:
old file: [email protected]
new file: test_home.txt
This should be done in a special chosen Folder including subfolders. The user should easily Change the Location (Folder).
Well, I will give this a try, but I am not sure how to:
%PATH% = G:\Tests\Folder
::Replace '@' with '_'
SET [email protected]
SET _result=%_test:_=file
ECHO %_result% =test_file
set
syntax for replacing a string:To get all txt-files:
Why
!
instead of%
? See here