Perl TK 打开文件夹
假设我们有输入框和一个按钮。当用户按下按钮时,它应该从输入框中获取路径并打开相应的文件夹。我怎样才能使用 Perl/TK 做到这一点?提前致谢
Say we are having entry box and a button. When user press the button, it should take path from entry box and open the corresponding folder. How can I do it using Perl/TK? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以对打开文件浏览器的命令行进程进行系统调用。在 Windows 上,这显然是
start
命令,在 Linux 上,诸如gnome-open
或nautilus
之类的命令可以工作。You might make a system call to the command line process that opens the file browser. On windows this is apparently the
start
command, on Linux something likegnome-open
ornautilus
would work.您可能想尝试像 Tk::DirTree 小部件。
You may want to try a widget like the Tk::DirTree widget.