python获取文件的绝对路径

文件目录结构如下:

python获取文件的绝对路径

第一种方法:

os.path.abspath(__file__)

假设app.py中想读取config.ini文件的内容,首先app.py需要知道config.ini的文件路径,从目录结构上可以看出,config.ini与app.py的父目录同级,也就是获取到app.py父目录(bin文件夹的路径)的父目录(config文件夹路径)的绝对路径再拼上config.ini文件名就能获取到config.ini文件

首先,在app.py中测试一下:


  1. import os
  2. def load_file():
  3. # 获取当前文件路径
  4. current_path = os.path.abspath(__file__)
  5. # 获取当前文件的父目录
  6. father_path = os.path.abspath(os.path.dirname(current_path) + os.path.sep + ".")
  7. # config.ini文件路径,获取当前目录的父目录的父目录与congig.ini拼接
  8. config_file_path=os.path.join(os.path.abspath(os.path.dirname(current_path) + os.path.sep + ".."),'config.ini')
  9. print('当前目录:' + current_path)
  10. print('当前父目录:' + father_path)
  11. print('config.ini路径:' + config_file_path)
  12. load_file()

输出结果:


  1. 当前目录:/Users/shanml/Documents/python/config/bin/app.py
  2. 当前父目录:/Users/shanml/Documents/python/config/bin
  3. config.ini路径:/Users/shanml/Documents/python/config/config.ini

从结果中可以看到一切都正常,没有什么问题,假如现在需要从main.py中执行app.py的load_file()方法呢?

来测试一下:

main.py


  1. from bin.app import load_file
  2. if __name__=='__main__':
  3. load_file()

输出结果,路径同样没问题:


  1. 当前目录:/Users/shanml/Documents/python/config/main.py
  2. 当前父目录:/Users/shanml/Documents/python/config
  3. config.ini路径:/Users/shanml/Documents/python/config.ini

参考:https://www.cnblogs.com/yajing-zh/p/6807968.html

第二种方法:

使用inspect

app.py:


  1. import os,inspect
  2. def load_file():
  3. # 获取当前文件路径
  4. current_path=inspect.getfile(inspect.currentframe())
  5. # 获取当前文件所在目录,相当于当前文件的父目录
  6. dir_name=os.path.dirname(current_path)
  7. # 转换为绝对路径
  8. file_abs_path=os.path.abspath(dir_name)
  9. # 划分目录,比如a/b/c划分后变为a/b和c
  10. list_path=os.path.split(file_abs_path)
  11. print('list_path:' + str(list_path))
  12. # 配置文件路径
  13. config_file_path=os.path.join(list_path[0],'config.ini')
  14. print('当前目录:' + current_path)
  15. print('config.ini文件路径:' + config_file_path)

在app.py中执行load_file()方法:


  1. list_path:('/Users/shanml/Documents/python/config', 'bin')
  2. 当前目录:/Users/shanml/Documents/python/config/bin/app.py
  3. config.ini文件路径:/Users/shanml/Documents/python/config/config.ini

在mian.py中执行load_file方法:


  1. list_path:('/Users/shanml/Documents/python/config', 'bin')
  2. 当前目录:/Users/shanml/Documents/python/config/bin/app.py
  3. config.ini文件路径:/Users/shanml/Documents/python/config/config.ini

相关推荐