如何获取GFile的目录名?

发布于 2024-10-18 12:42:01 字数 129 浏览 1 评论 0原文

使用 GIO 和 GVFS 时,如何最好地获取 GFile 对象的目录名称?有 get_basename() 函数,但没有 get_dirname()。

该函数也应该适用于远程 URI。另外,它应该可以在 Python 中使用。

When using GIO and GVFS, how do I best get the directory name of a GFile object? There is a get_basename() function but no get_dirname().

The function should work for remote URIs as well. Also, it should be available in Python.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

趴在窗边数星星i 2024-10-25 12:42:01

首先获取该目录的 GFile,然后获取该目录的名称:

GFile* dir = g_file_get_parent(gfile));
char* dir_name = g_file_get_parse_name(dir);

First get the GFile for the dir, then get the name of the dir:

GFile* dir = g_file_get_parent(gfile));
char* dir_name = g_file_get_parse_name(dir);
最舍不得你 2024-10-25 12:42:01

看看这个: http://docs.python.org/library/os.path .html。有一个 dirname 函数可能会有所帮助。不知道它是否也适用于远程 URI。试试吧。

Take a look at this: http://docs.python.org/library/os.path.html. There is a dirname function which might help. Dont know if it will work for remote URIs as well. Just try it out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文