My Problem is this:
I want to replace every Special character such as "@" in file names.
Example:
old file: test@home.txt
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 _test=test@file.txt
SET _result=%_test:_=file
ECHO %_result% =test_file