📅  最后修改于: 2023-12-03 15:08:57.735000             🧑  作者: Mango
在Python中,我们可以使用shutil
模块中的move()
函数来移动文件和目录。
移动文件的代码如下:
import shutil
src_file = "/path/to/source/file"
dst_dir = "/path/to/destination/directory"
shutil.move(src_file, dst_dir)
其中,src_file
是要移动的源文件的路径,dst_dir
是移动到的目标文件夹的路径。
移动目录的代码如下:
import shutil
src_dir = "/path/to/source/directory"
dst_dir = "/path/to/destination/directory"
shutil.move(src_dir, dst_dir)
其中,src_dir
是要移动的源目录的路径,dst_dir
是移动到的目标文件夹的路径。
注意事项:
Error
异常;我们可以通过以下方式验证是否成功移动了文件或目录:
import os
if os.path.exists(dst_path):
print(f"移动成功: {dst_path}")
else:
print(f"移动失败!")
推荐Python版本:Python 2.2+
以上就是Python中移动文件和目录的方法,有需要的朋友可以试着动手编写一下并验证一下。