Python2.7和PyQt4 QFileDialog权限被拒绝IOError

时间:2014-07-24 00:53:20

标签: python python-2.7 pyqt pyqt4

我使用PyQt QFileDialog小部件来获取用户输入文件名。然后我尝试使用Python csv编写器来创建我的文件。但是,有时(并非总是如此,我不确定为什么)我得到一个IOError:[Errno 13]权限被拒绝:' / mypathname /'

#this is how I set my file path parameter
self.dlg.ui.filepath.setText(QFileDialog.getSaveFileName())
self.pathString = str(self.dlg.ui.filePath.text())

#how i write the file
with open(self.pathString, 'wb') as ofile:
    writer = csv.writer(ofile, quoting=csv.QUOTE-NON, delimiter='\t'
    ...

0 个答案:

没有答案