- Code: Select all
brc64 /REPLACECI:%3A:- /DIR:C:\temp\folder /NOFOLDERS /RECURSIVE
Given the above command, based on the documentation, I would expect the tool to rename all of the files (no directories) in the C:\temp\folder directory by replacing the characters "%3A" with a "-" character recursively. However, when I run this command, I am seeing output like below:
- Code: Select all
Filename file%3A_file.html would be renamed to file-_file.html
So, the utility is telling me that it correctly understands what I want it to do....without actually doing it. For those of you familiar with powershell, it is as if I ran a command using the "-whatif" parameter. How do I get the commandline utility to actually rename the file?