This plugin should be an additional alternative to file open dialog.
It saves the found files to a history file,
to have faster access to them.
It also supports quick access by listing the
possible suggestions in the listctrl, if you type
the first letters into the filename field.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Ahoy there. After installing (directly) onto a windows box (XP, Python 2.2.2, drpy 3.5.9, FindFiles 0.0.3), I get the following traceback:
Traceback (most recent call last):
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 529, in OnFindFiles
d = drFindFilesDialog(DrFrame, -1, "Find Files")
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 197, in __init__
self.OnRefreshFileList()
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 376, in OnRefreshFileList
for i in DrFrame.FindFiles_AllFiles[self.cur_index][1]:
IndexError: list index out of range
Cheers,
Dan
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This plugin should be an additional alternative to file open dialog.
It saves the found files to a history file,
to have faster access to them.
It also supports quick access by listing the
possible suggestions in the listctrl, if you type
the first letters into the filename field.
New Version 0.0.1
Ahoy there. After installing (directly) onto a windows box (XP, Python 2.2.2, drpy 3.5.9, FindFiles 0.0.3), I get the following traceback:
Traceback (most recent call last):
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 529, in OnFindFiles
d = drFindFilesDialog(DrFrame, -1, "Find Files")
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 197, in __init__
self.OnRefreshFileList()
File "C:/Documents and Settings/Daniel/drpython/plugins\FindFiles.py", line 376, in OnRefreshFileList
for i in DrFrame.FindFiles_AllFiles[self.cur_index][1]:
IndexError: list index out of range
Cheers,
Dan
Hi Dan,
thanks, I could duplicate this.
I will fix this in the next time.
it should be on the line 197:
if len (DrFrame.FindFiles_AllFiles) > 0:
before:
->self.OnRefreshFileList()
Cool Beans. Now it works. I've added it to the website (I think I finally got all the plugins listed).