@ECHO OFF
SETLOCAL
::
:: These are YOUR relative-root (base of scanning tree)
:: and destination
:: No idea where SSESS appears from... :(
::
SET SSESS=P_5013
SET relroot=I:\2013CAPTURE\b-p_98
SET dest=\\Nascfmj1\DOCNUM\partition
::
:: These are MY directories used for testing
::
SET dest=C:\destdir\%ssess%
SET relroot=u:\b-p_98
SET entier=%dest%\entier\%SSESS%
SET conservation=%dest%\conservation\%SSESS%
SET pochette=%dest%\pochette\%SSESS%
::
:: This is for a test - creating dummy files
:: 3 directories, 3 ".png" files in each,
::
FOR /L %%i IN (1000,1,1002) DO (
MD %relroot%\p_%%i
FOR /L %%f IN (2000,1,2002) DO (
dir>%relroot%\p_%%i\p_%%i_%%f.png
)
)
::
:: Routine proper - create pochette
::
MD %pochette%
FOR /f %%a IN ('dir /ad/b "%relroot%\P_????" ' ) DO (
PUSHD "%relroot%\%%a"
FOR /f %%i IN ('dir /b /a-d P_*.png ') DO (
CALL :CONVERT %%i -resize 1500x1500 %%~ni.jpg
)
MD %entier%\%%a
move *.jpg %entier%\%%a
mkdir %conservation%\%%a
copy *.png %conservation%\%%a
copy *.pdf %entier%
CALL :convert *0001.png -resize 1500x1500 %%a_COUV.jpg
copy *_COUV.jpg %pochette%
POPD
)
GOTO :eof
::
:: I don't have CONVERT.EXE...
::
:CONVERT
ECHO execute command: CONVERT %*
::
:: Two different situations:
:: either create DUMMY .PDF and .JPG
:: OR DUMMY _COUV
ECHO %*|FINDSTR /i "couv" >NUL
IF ERRORLEVEL 1 (
DIR >%4
DIR >%~n4.PDF
) ELSE (
DIR >%4
)
GOTO :eof
这应该可以完成任务 - 好吧,如果没有,我几乎不会发布它,对吗?
我不知道 SSESS 来自哪里,所以我只是SET
在文件的开头。
relroot
设置为开始扫描dest
的位置,以及将移动或复制文件的位置。我立即将它们重置为我的测试目录 - 我建议您设置一个类似的真实数据树进行测试。
然后计算entier
,conservation
和pochette
目录。
然后我在我的测试区域创建了一些虚拟的“.png”文件和目录。
我注意到你没有pochette
在你的日常生活中做,所以我做了一个。
然后是主例程 - 每个目录名匹配 P_???? 在目录%relroot%
中依次分配给%%a
,所以%%a
替换%DSESS%
PUSHD 更改为所选目录名,您应该熟悉该CONVERT
命令。我调用了一个子程序来模拟创建a.jpg
并同时制作了a .pdf
。
处理完.png
s 后,创建 的子目录entier
并将适当.jpg
的 s 移至其中。conservation
与s相同的故事.pdf
被复制到entier
目录中。
最后,convert
再次调用例程以完成*_couv.jpg
文件,然后可以将其移动到pochette
POPD 恢复原始目录,我们继续,直到所有目录都完成。
所以这个例程可以从任何地方运行——不管当前目录是什么。
很好的测试!
高温高压