批量清空当前文件夹下的txt内容

@echo off
for /r %%i in ("*.txt") do (
type nul > %%i
)
pause

THE END
分享
二维码
< <上一篇
下一篇>>