在 Python 中,用于处理本地文件的常用标准库是:操作系统路径操作系统路径库如果你有一个文件的路径并且想要它的目录,那么我们需要提取它:>>> import os>>> filepath = '/Users/guest/Desktop/blogpost.md'>>> os.path.dirname(filepath) # Returns a string of the directory name'/Users/guest/Desktop'如果你想要你的脚本的目录,你需要搜索的关键字是“当前工作目录”:>>> import os>>> os.getcwd() # returns a string of the current working directory'/Users/guest/Desktop'另请查看此 SO 帖子,了解您可能需要的更多常见操作。