Thursday, October 18, 2012

Change extension of all files in a directory in windows


change extn of all files in current dir to pdf using comamnd:
ren  *  *.pdf

change extn of all files in current dir to xml using command:
ren  *  *.xml

change extn of all files in current directory having extn txt to extn xml using command:
ren  *.txt  *.xml

No comments:

Post a Comment