求DOS批處理 將D盤目錄拷貝到E盤下,再將E盤目錄拷貝到D盤下,迴圈之

時間 2022-07-26 17:15:08

1樓:

2二摟正解,dos批處理根本就不能完成,dos批處理是分步執行的,一摟的結果最後是de兩盤最後相同, 都有原來de兩盤上的內容(最好結果),差一點就是根本沒有執行完(空間不夠)

如果不能改碟符(在純dos下)你就用手工的批處理吧,d:dir /a/w >d.bat #前半部分dir /a/w >>d.

bat #後半部分e:dir /a/w >e.bat

dir/a/w >>e.bat

編輯d和e這兩個批檔案

將每行的5項用回車分成5行,去掉目錄前面的括號,在前半部分的每行加xcopy /e/s

在後半部分的每行加deltree,將無關的行(如. .. 盤空間等)刪除,儲存後退出執行

2樓:匿名使用者

:hello

xcopy d:\ e:\ /t /e /yxcopy e:\ d:\ /t /e /ygoto hello

rem 只複製了目錄和子目錄,不包括目錄和子目錄中的檔案

3樓:匿名使用者

使用for迴圈吧,估計你是做壓力測試,可以設定休息的時間.

for /l %%i in (5900 1 5909) do (xcopy d:\ e:\ /t /e /yping 1.

1.1.1 -n 1 -w 5000 > nulxcopy e:

\ d:\ /t /e /yping 1.1.

1.1 -n 1 -w 5000 > nul)

4樓:君子之吻

在d盤建個d.bat檔案

d:xcopy . e:

e:e.bat

再在e盤建一個e.bat

e:xcopy . d:

d:d.bat

5樓:匿名使用者

不用那麼麻煩,改碟符就好了

請問dos批處理裡的if大概怎麼用

if not errorlevel number command if not string1 string2 command if not exist filename command not 指定只有條件為 false 的情況下,windows xp 才 應該執行該命令。errorlevel n...

dos 批處理 或VBS指令碼批量修改CSV格式檔案內容

set fso createobject scripting.filesystemobject set fols fso.getfolder c p for each fol in fols.subfoldersfolpath fol.path folname fol.name file1 folp...

求定時關機批處理

echo off title 自定義關機時間 sc config schedule start demand net start schedule color 17 mode con cols 80 lines 25 setshutdowntime echo for f tokens 1,2,3,4...