如何在泥 shutil 中设置默认路径?

如何在泥 shutil 中设置默认路径?

樊玲-李宁:把出色留给自己
樊玲 李宁:把出色留给自己
import shutil source_path = "/path/to/source/directory" target_path = "/path/to/destination/directory" shutil.copytree(source_path, target_path)

默认情况下, shutil.copytree 会使用当前目录作为源和目标路径。如果源路径包含相对路径,则 shutil.copytree 会使用当前目录作为默认路径。

如果想要设置默认路径,可以使用 dst_path 参数指定。例如:

shutil.copytree(source_path, target_path, dst_path="/path/to/default/directory")

dst_path 参数可以是绝对路径或相对路径。

请注意,dst_path 参数只能用于 copytree() 函数的 copy 参数中。

此外,也可以使用 rpath 参数指定源路径的相对路径。例如:

shutil.copytree("/path/to/source/directory", "/path/to/destination/directory", rpath="/path/to/relative/directory")

rpath 参数可以是绝对路径或相对路径。

评论/回答
在评论里试试@好友|或者#文章/问答吧~