I have folders like E:\Backups\code\Hazard\test1
... testn
And inside these test folders something like E:\Backups\code\Hazard\test1\it0
... itn
The root folder is E:\Backups\code
from where the code runs.
The below code runs on each subfolders and copies summary.yml
from it0
folder to latest it(n)
folder.
Why the code runs just for test1
folder and then hangs?
setlocal ENABLEDELAYEDEXPANSION
set root=%cd%
for /D %%X in (%root%\*) do (
echo %%X
cd %%X
for /D /r %%b in (*) do (
cd %%b
echo %%b
for /f "tokens=1,2,*" %%a in ('robocopy . . file.txt /l /nocopy /is /s /nc /ns /ts /ndl /njh /njs ^| sort /r') do set "lastFolder=%%~dpc" & goto :done
:done
echo Last folder : %lastFolder%
for /d %%j in (*) do (
if /i "%%~nj"=="it0" COPY %%j\summary.yml %lastFolder%
)
cd ..
)
)
There are two main problems in the code:
goto
is used inside afor
loop, the loop is cancelledsetlocal enabledelayedexpansion
and changing the syntax used to retrieve the value in the variable from%var%
into!var!
.But
goto
can be removed as indicated in the previous answer,for
replaceable parameter inside a variable, just use the replaceable parameterNot tested, but more or less
Being
E:\Backups\code
the current active directory:%%X
will enumerate the folders underE:\Backups\code
(Hazard
)%%Y
will enumerate the folders underE:\Backups\code\Hazard
(testn
)%%a
executes arobocopy
command to locate the folder containing the latestfile.txt
filesort /r
sorts the list of files in descending order so the latest file is the first in the listcmd
retrieves and outputs only the first linefor
replaceable parameters, execute the indicatedcopy
command.I'm not sure about what the line with robocopy should do. It looks like this command is for getting name of last subdirectory in current directory.
Perhaps this code works better. But I could not test it.
It is at least necessary to reference environment variable
lastFolder
with exclamation marks instead of percent signs to really use delayed expansion as needed here.goto :EOF
exits the subroutine resulting in continuing on line belowcall :GetLastFolder
.There is one more
goto :EOF
or alternativelyexit /B
after main code necessary to avoid that the code of the subroutine is executed once more after most outer for loop finished. Thisgoto :EOF
results in exiting the processing of this batch file.For understanding the used commands and how they work, open a command prompt window, execute there at least the following commands, and read entirely all help pages displayed for each command very carefully.
call /?
for /?
goto /?
set /?