set foldername =!foldername:\ =!批量重命名包含具有特定模式的文件的所有文件夹

时间:2016-05-08 04:34:06

标签: batch-file windows-xp

这是我试过的:

@echo off
REM Prefix zz_ to folders containing episodes with zz_
setlocal enabledelayedexpansion enableextensions
for /r "G:\itunes\Podcasts\" %%f in (zz_*.mp3) do (
   set N=%%~pf~
   set N=!N:\itunes\Podcasts\=!
   set N=!N:\=!
if exist %%f ren "g:%%~pf" "zz_!N!"
)
pause

但是我收到了错误消息:进程无法访问该文件,因为它正由另一个进程使用。 无论如何,我不是一个程序员,只是一个剪辑和粘贴有点人,所以感谢您的帮助。

所以上面的问题当然是我在尝试递归目录时修改子目录(g:\ itunes \ podcasts)。因此,以下笨重的代码确实有效,但有一个例外。

@echo off
setlocal enabledelayedexpansion enableextensions
REM Prefix zz_ to folders containing episodes with zz_
for /r "G:\itunes\Podcasts\" %%f in (zz_*.mp3) do (
   set foldername=%%~pf
   set foldername=!foldername:~17!
   set foldername=!foldername:\=!
   if exist %%f echo if exist %%f ren "g:%%~pf" "zz_!foldername!" >>g:\trash.bat
)
call g:\trash.bat
del g:\trash.bat

pause

它不处理包含感叹号的文件名。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

以下作品,但非常笨重...有一件事,即使在找到第一个zz_podcast之后,它仍继续搜索文件夹。在批处理文件中执行批处理文件的想法可能最终导致我需要转义字符的其他问题。这是第二批,我需要进行下面看到的百分号编辑。如果有人能想到一种完全不同的方法,或许更优雅的方法,那会好吗?

@echo off
REM Prefix zz_ to folders containing episodes with zz_
setlocal DisableDelayedExpansion
REM The following recurses g:\itunes\podcasts looking for zz_ podcasts
for /r "G:\itunes\Podcasts\" %%f in (zz_*.mp3) DO (
set "filename=%%f"
set "filepath=%%~pf"
set "foldername=%%~pf"
REM Delayed Expansion needed here for edits to file, path & folder names
setlocal EnableDelayedExpansion
set filename2=!filename:%%=%%%%!
set filepath=!filepath:%%=%%%%!
set foldername=!foldername:~17!
set foldername=!foldername:\=!
set foldername=!foldername:%%=%%%%!
if exist "!filename!" echo if exist "!filename2!" ren "g:!filepath!" "zz_!foldername!" >>g:\trash.bat
endlocal
)
REM trash.bat has its own issues with escaped characters
call g:\trash.bat
del g:\trash.bat

这是怎么回事。当我编辑播客标签时,我经常需要在“上下文”中查看未经编辑的播客,以便确定最佳前进方式。例如,如果播客的标题中有“重播”,那么在删除之前我需要确保我有原版。所以我暂时将播客标记为zz_,然后打开整个zz_文件夹以查看zz_episode“在上下文中”