comicguests (Freya)当前离线
三级士官
评分人数
ArdentMan 当前离线
中尉
@Echo Off For /F "delims=" %%a In ('Dir /a /b /s F:\download\*.torrent') Do If /i "%%~dpa" NEQ "F:\download\torrent" Move /y "%%a" "F:\download\torrent\"复制代码
TOP
for /r /d %%a in (*) do del /a /f /s "%%a\*.torrent"复制代码
Hello123World 当前离线
荣誉版主
C:\Users\helloworld\Desktop>attrib +h 2.txt C:\Users\helloworld\Desktop>move 2.txt c:\ 系统找不到指定的文件。复制代码
@echo off for /f "delims=" %%i in ('dir /s /a *.torrent') do (attrib -h "%%i" move /y "%%i" F:\download\torrent\ ) pause>nul复制代码
C:\Users\helloworld\Desktop>attrib +h 2.txt C:\Users\helloworld\Desktop>copy 2.txt c:\ 2.txt 系统找不到指定的文件。 已复制 0 个文件。 C:\Users\helloworld\Desktop>xcopy 2.txt c:\ 复制了 0 个文件 C:\Users\helloworld\Desktop>del 2.txt 找不到 C:\Users\helloworld\Desktop\2.txt复制代码
powerbat 当前离线
大校
CrLf 当前离线
论坛巡查
xcopy /h *.torrent F:\download\torrent\复制代码