1

.rdl拡張子はあるが、名前に が含まれていない新しいファイルをコピーしたい- Backup.rdl

を使用してリストを取得できますが、dir *.rdl /b | findstr /vi " - Backup.rdl"このリストを使用して新しいファイルをコピーするにはどうすればよいですか?

4

2 に答える 2

0
ROBOCOPY C:\Source C:\Dest *.rdl /XF "* - Backup.rdl"
于 2012-11-01T12:01:25.837 に答える
0

Use this command to copy them into the copies directory, for example. Notice the ^ in front of the |

for /f %i in ('dir *.rdl /b ^| findstr /vi " - Backup.rdl"') do copy %i copies

If you want it in a batch file you need %%i

for /f %%i in ('dir *.rdl /b ^| findstr /vi " - Backup.rdl"') do copy %%i copies
于 2012-11-01T15:12:20.170 に答える