Как извлечь путь к файлу из QFileSystemModel? - PullRequest
1 голос
/ 04 февраля 2012
 def nukeScriptFolder(self, index = QModelIndex()):

         index = self.dirmodel.index(QDir.currentPath())

         fileInfo = QtCore.QFileInfo(self.dirmodel.fileInfo(index))
         #print fileInfo.fileName()        
         #path = self.dirmodel.fileinfo(index).absoluteFilePath()
         self.fileView.setRootIndex(filemodel.setRootPath(path))

Когда я выполняю вышеуказанный код, я получаю следующую ошибку

     path_index = self.dirmodel.index(QDir.currentPath()).toString()
     TypeError: 'sip.methoddescriptor' object is not callable  
...