我想改變命令當前工作目錄:如何提批處理文件
copy "D:\Folder\File.txt" "C:\Folder\File.txt"
到:
copy "%current path%\File.txt" "C:\Folder\File.txt"
有什麼方法輸入這個樣子?
我想改變命令當前工作目錄:如何提批處理文件
copy "D:\Folder\File.txt" "C:\Folder\File.txt"
到:
copy "%current path%\File.txt" "C:\Folder\File.txt"
有什麼方法輸入這個樣子?
copy "%cd%\some.file" "c:\there\some.file"
或
copy "%~dp0some.file" "c:\there\some.file"
它們是不同的 - 是%cd%
當前可執行文件目錄和%~dp0
是其中bat文件是在情況下,SHIFT命令不called.Also %~dp0
不能從命令中使用因爲沒有腳本文件。
有沒有路徑,文件名始終駐留在當前目錄下:'拷貝 「FILE.TXT」 「C:\文件夾\ FILE.TXT」' – Aacini