Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在尝试为我的学校项目做一个简单的程序,这是我第一次使用 python,因为我习惯于 c# 编程
我正在使用 Window7,有什么方法可以在 TK GUI 中按下按钮并弹出该目录?
InitDir = "C:\AgmPlots"
如前所述,您需要一些(特定于平台的)程序来“打开”目录。
最独立于平台的方式可能是webbrowser模块。(虽然它web的名字有,但它会打开带有file://URL 的标准文件管理器)。
webbrowser
web
file://
import webbrowser
在您的事件处理程序内部的某个地方:
webbrowser.open ('file:///home/nobody') #your path here