
A Brief Overview of the File System API
The File System API lets web apps read, write, and manage files and folders—with user permission—using file and directory “handles,” plus a high-performance private storage option called OPFS.
Each of us relies on some sort of technology to improve our lives and the lives of others.
Web technology can be an amazing tool to improve businesses, quality of life and bring hope to those that otherwise may not receive it if it weren’t for a technological advance.
This is the reason that the Webolution Designs tagline is “We all want to change the world”.

The File System API lets web apps read, write, and manage files and folders—with user permission—using file and directory “handles,” plus a high-performance private storage option called OPFS.

The File API enables web applications to access files and their contents when the user makes them available—typically via an control or drag and drop. Selected files are exposed as a FileList, which contains File objects that provide metadata like name, size, type, and last modified date. You can read a file’s contents using FileReader (asynchronously) or FileReaderSync in web workers, and you can also work with binary data through Blob objects.

The Fetch API is the standard, modern interface for requesting resources on the web—everything from JSON data to images, files, and more. It’s available as a global function in both window and web worker contexts, which makes it broadly useful whether you’re building a UI-driven app or doing background work
Here at Webolution Designs, we love to learn. This includes sharing things we have learned with you.
Come back inside to continue your learning journey.