我想將當前工作目錄中的所有文件複製到另一個位置。使用Python將文件從pwd複製到另一個目錄
我已經試過的變化如下:
import shutil
shutil.copyfile('/*','/my/other/directory/location')
這給了錯誤:OSError: [Errno 2] No such file or directory: '/*'
我正在考慮使用os.system
和cp
命令。
有沒有人有更好的想法?
我想將當前工作目錄中的所有文件複製到另一個位置。使用Python將文件從pwd複製到另一個目錄
我已經試過的變化如下:
import shutil
shutil.copyfile('/*','/my/other/directory/location')
這給了錯誤:OSError: [Errno 2] No such file or directory: '/*'
我正在考慮使用os.system
和cp
命令。
有沒有人有更好的想法?
什麼環境?它是本地複製嗎? – zee
你是指cp -r [源] [目標] – zee
在linux上(但通過MinGW SSH)與'cp -f -R -L $本地/ *我的位置' – atomh33ls