阅读量:0
Python可以使用shutil
模块中的copy
函数将文件复制到桌面。以下是一个示例代码:
import shutil import os # 原文件路径 source_file = "path/to/source_file.py" # 目标文件夹路径 destination_folder = os.path.expanduser("~/Desktop") # 复制文件到桌面 shutil.copy(source_file, destination_folder)
在上面的代码中,你需要将source_file
路径替换为要导出的py文件的路径。然后,将文件复制到桌面的目标文件夹中。
请确保你具备对源文件的读取权限,并且有在目标文件夹中写入文件的权限。