About 1,080,000 results
Open links in new tab
  1. Node.js File System Module - W3Schools

    The Node.js file system module allows you to work with the file system on your computer. To include the File System module, use the require() method: var fs = require('fs');

  2. File System API - Web APIs | MDN - MDN Web Docs

    Mar 15, 2025 · The File System API — with extensions provided via the File System Access API to access files on the device file system — allows read, write and file management capabilities.

  3. Local file access with JavaScript - Stack Overflow

    Dec 17, 2008 · File - an individual file; provides readonly information such as name, file size, MIME type, and a reference to the file handle. FileList - an array-like sequence of File objects. …

  4. Node.js File System - GeeksforGeeks

    Jan 8, 2025 · To handle file operations like creating, reading, deleting, etc., Node.js provides an inbuilt module called FS (File System). Node.js gives the functionality of file I/O by providing …

  5. FileSystem - Web APIs | MDN - MDN Web Docs

    May 14, 2025 · Learn about the FileSystem interface, including its properties, specifications and browser compatibility.

  6. Read files in JavaScript | Articles - web.dev

    Jun 18, 2010 · This page walks through how to use JavaScript to interact with files. The modern File System Access API The File System Access API provides a way to read from and write to …

  7. Access Local Storage Using the File System API in JavaScript

    Dec 12, 2024 · One of the modern approaches to accessing local storage in web applications is using the File System API in JavaScript. The File System API provides a secure and …

  8. Implement Persistent Data Storage via the File System API in JavaScript

    Dec 12, 2024 · One powerful and often underutilized tool for achieving persistent data storage in the web environment is the File System API in JavaScript. This API offers developers the …

  9. Mastering the Node.js FS Module: A Comprehensive Guide with …

    Oct 26, 2024 · Mastering the Node.js FS Module: A Comprehensive Guide with Code Examples. The Node.js fs (File System) module is a fundamental component that allows your applications …

  10. Manage Directories and Paths with the JavaScript File System API

    Dec 12, 2024 · The JavaScript File System Access API provides an excellent mechanism for web applications to read and write files and directories directly from the user's computer. This …

Refresh