dir_path = (os.path.abspath(os.path.join(os.path.realpath(__file__), './.')))
时间: 2023-11-23 07:53:12 浏览: 189
Python常用模块os.path之文件及路径操作方法
dir_path = (os.path.abspath(os.path.join(os.path.realpath(__file__), './.')))的作用是获取当前脚本所在目录的绝对路径。其中,os.path.realpath(__file__)获取当前脚本的绝对路径,os.path.join()用于连接路径,'./.'表示当前目录,os.path.abspath()用于获取绝对路径。这样,dir_path就可以得到当前脚本所在目录的绝对路径了。
阅读全文