本帖最后由 cmd1152 于 2021-9-26 21:56 编辑
说的不是很详细..
在桌面运行- @echo off
- set t=1
- :i
- echo 第%t%次移动,下一次移动是在1小时后。
- set /a t=t+1
- for /f %%i in ('dir /b *.doc') do (
- if exist "D:\文档" (md D:\文档)
- copy %%i D:\文档\%%i
- )
- for /f %%i in ('dir /b *.docx') do (
- copy %%i D:\文档\%%i
- )
- for /f %%i in ('dir /b *.pdf') do (
- if exist "D:\文档\pdf" (md D:\文档\pdf)
- copy %%i D:\文档\pdf\%%i
- )
- for /f %%i in ('dir /b *.caj') do (
- if exist "D:\文档\caj" (md D:\文档\caj)
- copy %%i D:\文档\caj\%%i
- )
- ping 1.127 -n 3600 -w 1000
- goto :i
复制代码
|