Batch File to move pictures to upper level

成日要將兒子的幼稚園相下載到電腦裏,打開個zip file 所有相打包在一個隨機的folder 內,每次要重覆地將很多jpg 移前上一個folder 很煩,所以借助batch file 幫忙。


REM It is so boring to move all Ling Ling photos from subfolder to it original folder
REM So I Created this script

@echo OFF
e:
FOR /D %%G IN ( "\Photo\LingLiang\2011\*" ) DO FOR /D %%T IN ( "%%G\*" ) DO ( move "%%T\*.*" "%%G" )


Comments

Popular Posts