windows - Automate rename of .rdf files to .XML -
i have requirement rename .rdf files (report definition file) .xml , trying automate i'm having hundreds of files. actual purpose of exercise identify if there files generate error while converting .xml , list of files. i'm thinking of writing .bat file this.
if has done similar thing or have idea kindly share me.
thanks in advance.
if want rename rdf files xml using bat, can use rename command. rdf not need converting xml, because xml---just different file name.
from command prompt type rename /?
see options.
this command renames rdf xml in current directory:
rename *.rdf *.xml
to output errors of bat file log file, has been covered here:
Comments
Post a Comment