Quote:
Originally Posted by richy1989
Is there any way to add a filter with the File Manager?
I have too many books,
but I just want to view the 'pdf' documents with koreader.
|
For Koreader FileManager to just show pdf files:
with a text editor, manually edit filechooser.lua
(you'll find that here: \koreader\frontend\ui\widget\)
so that the following line (roughly at line 21):
Code:
if self.show_hidden or not string.match(f, "^%.[^.]") then
is changed to
Code:
if string.match(f, "%.pdf") then