我有一些预先制作的文件与python脚本保存在同一目录中,我想在运行脚本时将它们复制到目标目录中。
我不想对路径进行硬编码,尤其是在将脚本文件夹移动到周围时。你如何获得脚本的目录路径?
import shutil
import os
file_name = "example.txt"
source_file = '/'.join([this_should_be_script_directory, file_name])
current_dir = '/'.join([os.getcwd(), file_name])
shutil.copy(source_file, current_dir)