我有一個文件存儲在一個變量(比如說)filePath中的路徑。我想將該特定文件複製到Python腳本中的另一個特定文件夾。如何將文件複製到Python腳本中的特定文件夾?
我試圖
folderPath = (os.getcwd() + "/folder_name/") #to get the path of the folder
shutil.copyfile(filePath, folderPath)
但我得到了一個錯誤IOError: [Errno 21] Is a directory
。
我該如何解決這個問題?
我的問題似乎是How do I copy a file in python? 的重複。但實際上,我想將文件複製到文件夾/目錄,而對該問題的大多數答案都提到將一個文件複製到另一個文件文件。
是的,這也適用:) – dravid07