在 Python 中移动文件:mv 的等价物
Python 提供了几个函数来完成移动文件的任务,类似于 mv终端中的命令。这些函数包括 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中文网其他相关文章!