如何在python中打印出gdal包的当前工作目录?

How to print out the current working directory of gdal package in python?

我四处搜索,在 Whosebug 中根本没有看到在 Python 中打印出 gdal 包的当前工作目录的方法。有没有我缺少的方法?我没有在 https://gdal.org/api/python.html

处看到与 gdal 的 python 包的当前工作目录相关的任何方法

我试图调用 gdal.warp(xxx, xxx),但它显​​示输入文件类型无效。

先谢谢了。

一个进程一次只有一个当前工作目录。所以你可以使用

import os

print(os.getcwd())

import gdal 然后 gdal.__file__ 就像来自用户 smci 的任何其他包一样实际上是答案:)