- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Does HTML5 allow you to interact with local client files from within a browser?
HTML5 allows us to interact with local client files (local client files are the files that are locally stored in the user’s computer). This is possible because HTML5 provides powerful APIs (Application Programming Interfaces) which are the interfaces with the help of which binary data and user’s local file system can be accessed. With the help of these file APIs, web applications can read files, file directory, can drag and drop from desktop to browser.
The following are the APIs that are used to access local client files −
- File System API
- File API
- File Writer API
The following are some examples −
- With the help of HTML5 file APIs, a thumbnail preview of images can be created when they are sent to the server to be saved there for future use.
- HTML5 file APIs allow an app to save a file reference when a user is offline.
- Images from the local drive can be accessed and get loaded into the browser through HTML5 File APIs.
- Related Articles
- Does HTML5 allow you to interact with local client files from within a web browser?
- How does selenium interact with the Web browser?
- How to allow the restricted resources from another domain in web browser with HTML5
- Can Selenium interact with an existing browser session?
- I need a client side browser database in HTML5. What are my options?
- How does selenium webdriver upload files to the browser?
- Copy Files from Docker Container to Local Machine
- Different ways to interact with SAP system from a web application
- Allow only access to camera device in HTML5
- HTML5 applicationCache vs Browser Cache
- How to store data in the browser with the HTML5 localStorage API?
- Client Checking file size using HTML5
- Play local (hard-drive) video file with HTML5 video tag?
- How to store a name permanently using HTML5 Local Storage?
- How to check web browser support in HTML5

Advertisements