我发现我经常使用这种模式:
os.path.join(os.path.dirname(__file__), file_path)
所以我决定在一个包含许多这么小的工具的文件中放入一个函数:
def filepath_in_cwd(file_path):
return os.path.join(os.path.dirname(__file__), file_path)
问题是,__file__
返回当前文件,因此返回当前文件夹,我错过了重点。我可以做这个丑陋的黑客(或者只是按原样编写模式):
def filepath_in_cwd(py_file_name, file_path):
return os.path.join(os.path.dirname(py_file_name), file_path)
然后对它的调用将如下所示:
filepath_in_cwd(__file__, "my_file.txt")
但如果我有办法获得堆栈中一级的函数的__file__
,我更喜欢它。有没有办法做到这一点?
答案 0 :(得分:11)