https://github.com/danielzotti/file-explorer-web
A File Explorer created with web technologies
https://github.com/danielzotti/file-explorer-web
filesystemaccessapi
Last synced: 10 months ago
JSON representation
A File Explorer created with web technologies
- Host: GitHub
- URL: https://github.com/danielzotti/file-explorer-web
- Owner: danielzotti
- Created: 2022-09-23T15:46:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-07T15:14:32.000Z (over 3 years ago)
- Last Synced: 2025-07-01T19:08:05.707Z (11 months ago)
- Topics: filesystemaccessapi
- Language: JavaScript
- Homepage: https://danielzotti.github.io/file-explorer-web/
- Size: 2.36 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# File Explorer Web
Some examples of `File System Access API`:
- Read a single file info from file system
- Read multiple files info from file system
- Preview an image retrieved from file system
- Preview a video retrieved from file system
- Text file: open, read content, edit, save, and save as
## TODO:
- copy file
- move (cut & paste) file
- manage files in directory
## Useful links
- [Demo](https://danielzotti.github.io/file-explorer-web)
- Docs for [File System Access API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API)
- Docs for [URL.createObjectUrl](https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL)
- More info and examples on [web.dev](https://web.dev/file-system-access/)
- An HTML5 text editor [project](https://github.com/GoogleChromeLabs/text-editor/) by Google