如何获取GFile的目录名?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先获取该目录的
GFile
,然后获取该目录的名称:First get the
GFile
for the dir, then get the name of the dir:看看这个: 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.