An open API service indexing awesome lists of open source software.

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

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