如何在 PyGtk LinkButton 中指定本地文件的 URI
我需要创建一个带有本地文件 URI 的链接按钮 (gtk.LinkButton)。有谁知道本地文件的有效 URI 格式是什么?我想指定一个相对文件夹示例: ../some_folder/file_i_need_to_open.txt
如果无法做到这一点,我不介意将文件放在与 python 源代码相同的文件夹中 =)
谢谢。
I need to create a link button (gtk.LinkButton) with an URI to a local file. Does anyone know what is a valid URI format for a local file ? I want to specify a relative folder example: ../some_folder/file_i_need_to_open.txt
If this is can't be done, I don't mind putting the file in the same folder as the python source code =)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类似于:
file:///usr/bin/
通常用于本地 URI。但也许只是/usr/bin/
也可以。你尝试过吗?Something like:
file:///usr/bin/
is generally used for local URI. But maybe just/usr/bin/
works too. Have you tried it?