martinmimigames / little-file-explorer

Android 1.0+ mini file explorer and manager
https://martinmimigames.github.io/projects/little-file-explorer/
GNU General Public License v3.0
316 stars 13 forks source link

support for external storages #15

Open wmartinmimi opened 1 year ago

wmartinmimi commented 1 year ago

eg usb, network, etc.

StevanWhite commented 1 year ago

Yes. Managing files over USB is pretty minimal functionality for a file manager.

App should 1) allow navigation and basic file operations on USB partition. 2) support multiple partitions 3) handle read-only filesystems and devices appropriately (visibly indicate is read-only, warn user that filesystem is read-only, if they try to write to it.) 4) display filesystem labels properly 5) respond gracefully to on-the-fly insertion and removal of device.

Also, if user has selected app to open inserted USB by default, then USB insertion should open the file browser activity for the drive, as directly as possible.


Some examples of freely-usable (but not all open source) file managers that handle USB pretty well:

sethidden commented 10 months ago

Network drive support such as NFS, SMB, or WebDAV would be an unique feature. There doesn't seem to be an open source Android file manager app that has this implemented.

Another OSS file manager, Simple File Manager - due to its private nature - refuses to implement that because it doesn't want the app to require the Internet access permission: https://github.com/SimpleMobileTools/Simple-File-Manager/issues/56#issuecomment-605314353 , which is understandable.