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


请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/6lbb97qUOs1sTyKJfN0ZEQ
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. set "FileNum=10"
  4. set "LoopNum=3"
  5. set "LoopCount=1"
  6. set /p LoopNum=输入循环次数:
  7. :BeginLoop
  8. for /f "delims=" %%i in ('dir /b /a-d *.txt ^| findstr /v /x /c:"out.txt" /c:"end.txt"') do (
  9.     set "_!random!=%%i"
  10. )
  11. set "FileCount=0"
  12. (for /f "tokens=2 delims==" %%i in ('set _') do (
  13.     set /a FileCount+=1
  14.     if !FileCount! leq %FileNum% (
  15.         echo file './%%i'
  16.     )
  17. ))>"out.txt"
  18. copy /b "out.txt"+"D:\a.txt" end.txt
  19. echo 已完成第 !LoopCount! 次随机抽取及合并,请检查文件 end.txt
  20. pause
  21. set /a LoopCount+=1
  22. if !LoopCount! leq %LoopNum% (
  23.     goto :BeginLoop
  24. )
复制代码
1

评分人数

我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表