首页上一页 1 下一页尾页 1 条记录 1/1页
直接调用QFileDialog.getExistingDirectory(self, "选择文件夹", "/")出错
发表在Python图书答疑
2020-03-21
《Python项目开发案例集锦》第14章 Excel数据分析师
是否精华
是
否
版块置顶:
是
否
模仿项目开发项目14,设置文件路径主要使用了PyQt5的QFileDialog子模块,该模块提供了一个供用户选择文件或者文件夹的对话框。
temproot = QFileDialog.getExistingDirectory(self, "选择文件夹", "/")
结果程序卡死跳出,现实Process finished with exit code -1073740791 (0xC0000409)。
后来在查阅多篇帖子以后,修改为
temproot = QFileDialog.getExistingDirectory(self.centralwidget, "选择文件夹", "/")
程序运行正常,但是不明白到底是什么问题,为何在dataEXCEL.py中运行就正常,自己写的就出现这样的问题,感谢老师解疑