Does anyone know of a simple & free app or script for windows (XP) that emulates the Unix recursive move|rename command?
|
|
|
|
|
|
|
Use XP's
and to do a recursive rename do
|
||||
|
|
|
The built-in XCOPY command is close. It will do a recursive copy, but I don't think it supports rename. |
||
|
|
|
I just run a small example in my Windows XP SP2 box with the move command and it worked. All files and directories were moved from source to dest. source and dest are directory names. move source dest ver Microsoft Windows XP [Version 5.1.2600]
move /?
Moves files and renames files and directories.
To move one or more files:
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination
To rename a directory:
MOVE [/Y | /-Y] [drive:][path]dirname1 dirname2
[drive:][path]filename1 Specifies the location and name of the file
or files you want to move.
destination Specifies the new location of the file. Destination
can consist of a drive letter and colon, a
directory name, or a combination. If you are moving
only one file, you can also include a filename if
you want to rename the file when you move it.
[drive:][path]dirname1 Specifies the directory you want to rename.
dirname2 Specifies the new name of the directory.
/Y Suppresses prompting to confirm you want to
overwrite an existing destination file.
/-Y Causes prompting to confirm you want to overwrite
an existing destination file.
The switch /Y may be present in the COPYCMD environment variable.
This may be overridden with /-Y on the command line. Default is
to prompt on overwrites unless MOVE command is being executed from
within a batch script.
|
||
|
|
|
I've created a VB Script that will do a search and replace on directory names... I have a files version too, however, I think this is enough to get you started with your own script. The way i use this script is i have a fileandreplacedirs.vbs, and put it in the same folder as the folders I want to rename. Also, it doesn't necessarily recurse into the folder, but could with a little modification
|
||
|
|
|
|
use simple DOS command. Step-1: cd to source directory where you want to rename the file extensions recursively. Step-2: type the command "ren *.[CurrentFileExtension] *.[DesiredFileExtension]" Hope this works. Cheers. |
||
|
|
|
I found this python script that works as well:
I added Python to my path and put the Python script above in a 'utils' folder. I then created this simple batch script to run it:
rn.bat:
I also updated the python script above to take its args from the command line. rn.py:
Finally all one needs to do now is something like this:
or
Have fun with the second one :) |
|||
|
|
|
|
this will rename file recursively :-) save in a file give 2 arguments from extension and to extension. ex: file name is test.bat command : test *.avi *.bmp it renames all files with extension avi to bmp (in all subfolders :)) Note: This is correction for the post answered Oct 26 at 13:20 by Rob Kam. He gave for
where as it shud have %% instead of % |
||
|
|
|
|
This worked better for me:
Source: http://www.islamadel.com/index.php/notes/6-computer/10-windows-command-line |
|||
|
|
|
|
There is a Windows port for most UNIX commands: gnuwin32.sourceforge.net or unxutils.sourceforge.net |
||
|
|
|
|
this one works for me! |
|||
|
|
