在Python 中移動檔案:mv 的等價物
Python 提供了幾個函數來完成移動檔案的任務,類似於mvv中終端中的命令。這些函數包括 os.rename()、os.replace() 和 Shutil.move()。
函數語法
三個函數都採用相同的語法:
os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo") os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo") shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
鑰匙注意事項
以上是如何在 Python 中移動檔案:`os.rename()`、`os.replace()` 或 `shutil.move()`?的詳細內容。更多資訊請關注PHP中文網其他相關文章!