我正在尝试制作批处理文件以转换某些文件类型。所以我没有在代码中放置更多无用的循环,我想把它放在一个循环中。
到目前为止,这是我的代码:
cd "%inputdir%"
setlocal disableDelayedExpansion
for /f "delims=" %%A in ('forfiles /s /m *.tga /c "cmd /c echo @relpath"') do (
set "file=%%~A"
setlocal enableDelayedExpansion
set filenametmp=%outputdir%!file:~1,-4!.paa
setlocal enableDelayedExpansion
For %%A in ("!filenametmp!") do (
Set foldertmp=%%~dpA
)
setlocal enableDelayedExpansion
IF NOT EXIST "!foldertmp!" (
mkdir "!foldertmp!"
)
endlocal
cd !Convertfolder!
Pal2PacE %inputdir%!file:~1! !filenametmp!
)
我使用this answer将for循环改进为:
for /f "delims=" %%A in ('for %%G in (.tga, .png) do 'forfiles /s /m *%%G /c "cmd /c echo @relpath"'') do (...
不幸的是,它抛出了这个错误:
System cannot find file for %G in...
有谁知道如何解决这个问题?
答案 0 :(得分:2)
如果我理解正确,我认为这段代码会做你想要的。
for %%G in (.tga, .png) do (
for /f "delims=" %%A in ('forfiles /s /m *%%G /c "cmd /c echo @relpath"') do (
REM The ECHO below is just for testing.
REM Put the code from inside your FOR loop here.
ECHO %%A
)
)
答案 1 :(得分:0)
我相信,但尚未经过测试:
for / f“delims =”%% A in('for %% G in(.tga,.png)do forfiles / s / m * %% G / c“cmd / c echo @relpath”')做(...
应该可以工作,并且forfiles
命令周围的引号会混淆问题。