Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

xcopy使用技巧

$
0
0

在使用xcopy.exe拷貝時,若目的路徑的資料夾不存在時會提示檔案或資料夾的選項供選擇,當我們有多個類似檔案要拷貝時這個提示就很討討厭,最後找到了下列的解決方法,可以用echo指令將預設選項值傳給xcopy:

▼ 提示選項

E:\>xcopy e:\AAA\file1.txt e:\BBB\file1.txt
Does E:\BBB\file1.txt specify a file name
or directory name on the target
(F = file, D = directory)?

▼ 用echo F指定使用檔案選項

E:\>echo F | xcopy E:\AAA\file1.txt E:\BBB\file1.txt
Does E:\BBB\file1.txt specify a file name
or directory name on the target
(F = file, D = directory)? F
E:\AAA\file1.txt
1 File(s) copied

##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles