在 Python 中移動檔案
在 Python中,您可以使用各種方法來移動文件,包括:
os.rename()
import os os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
os.rep lace()
import os os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
shutil.move()
import shutil shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
這些方法都有相同的語法。第一個參數是目前檔案的路徑,第二個參數是新目標的路徑。
注意事項
以上是如何在 Python 中移動檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!