使用批处理脚本重命名文件夹

时间:2015-02-01 11:20:58

标签: windows batch-file cmd batch-rename

我目前正在尝试重命名最近创建的文件夹,我知道有一个名为REN(或)RENAME的命令,但它用于重命名文件而不是文件夹。

Below is the code that i am working to achieve this.

    for %%# in ("%mask%_*") do (
     if not exist "%destination_dir%\%mask%" mkdir "%destination_dir%\%mask%"
     move /y "%%~#" "%destination_dir%\%mask%"
     if exist "%destination_dir%\%mask%" ren "%destination_dir%\%mask%_%date:~10,4%%date:~7,2%%date:~4,2%-%time:~0,2%%time:~3,2%"
    )

如何实现这一目标。?

1 个答案:

答案 0 :(得分:3)

在以if exist开头的批处理代码中,命令 ren 仅使用1个参数启动。因此缺少具有文件夹/文件新名称的第二个参数。请注意,第二个参数必须始终只是没有路径的文件/文件夹的新名称。

您的批次代码最有可能:

for %%# in ("%mask%_*") do (
     if not exist "%destination_dir%\%mask%" mkdir "%destination_dir%\%mask%"
     move /y "%%~#" "%destination_dir%\%mask%"
     if exist "%destination_dir%\%mask%" ren "%destination_dir%\%mask%" "%mask%_%date:~10,4%%date:~7,2%%date:~4,2%-%time:~0,2%%time:~3,2%"
)