Python 中的相对路径
在 Python 中处理文件和目录时,通常需要指定相对于当前工作目录的路径。但是,在某些情况下,您可能需要指定脚本文件位置的相对路径。
问题: 有没有办法定义脚本位置的相对路径文件,而不是当前工作目录?
答案:
是的,您可以使用通过以下方式获取脚本文件所在位置的绝对路径:
import os # Get the directory name of the current script file dirname = os.path.dirname(__file__) # Construct the absolute path by joining the directory name with the relative path filename = os.path.join(dirname, 'relative/path/to/file/you/want')
说明:
以上是如何指定 Python 脚本位置的相对路径?的详细内容。更多信息请关注PHP中文网其他相关文章!