在 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中文网其他相关文章!