标签: python pkg-resources
假设:
- dir1 - subdir - installed_module - dir2 - dbfile
这是我的文件夹结构。我想找到dbfile,并且在其他目录中。如何使用已安装的模块pkg_resources在python中使用dbfile来找到installed_module的位置?
dbfile
pkg_resources
installed_module
我尝试使用pkg_resources.resource_filename('installed_module',dbfile)来获取一些我所期望的路径。