एक या एक से ज़्यादा फ़ाइलें खोलने का तरीका

थॉमस स्टाइनर
थॉमस स्टाइनर

फ़ाइलों से जुड़ी कार्रवाई करना, वेब पर ऐप्लिकेशन के लिए सबसे आम कार्रवाइयों में से एक है. आम तौर पर, उपयोगकर्ताओं को कोई फ़ाइल अपलोड करके उसमें कुछ बदलाव करने होते थे और उसे फिर से डाउनलोड करना पड़ता था, ताकि डाउनलोड फ़ोल्डर में एक कॉपी बन जाए. File System Access API से, अब उपयोगकर्ता फ़ाइलों को सीधे खोल सकते हैं, उनमें बदलाव कर सकते हैं, और बदलावों को ओरिजनल फ़ाइल में सेव कर सकते हैं.

आधुनिक तरीका

File System Access API के showOpenFilePicker() तरीके का इस्तेमाल करके

किसी फ़ाइल को खोलने के लिए, showOpenFilePicker() को कॉल करें, जो चुनी गई फ़ाइल या फ़ाइलों की कलेक्शन के साथ एक प्रॉमिस दिखाता है. अगर आपको एक से ज़्यादा फ़ाइलों की ज़रूरत है, तो इस तरीके का इस्तेमाल करके { multiple: true, } को पास किया जा सकता है.

ब्राउज़र सहायता

  • 86
  • 86
  • x
  • x

सोर्स

क्लासिक तरीका

<input type="file"> एलिमेंट का इस्तेमाल करना

उपयोगकर्ता, पेज पर <input type="file"> एलिमेंट पर क्लिक करके, एक या एक से ज़्यादा फ़ाइलें खोल सकता है. अब इस तरकीब में, JavaScript वाले पेज में एलिमेंट को इंजेस्ट करना और प्रोग्राम के हिसाब से उस पर क्लिक करना शामिल है.

ब्राउज़र सहायता

  • 1
  • 12
  • 1
  • 1

सोर्स

प्रोग्रेसिव एन्हैंसमेंट

नीचे दिए गए तरीके के साथ फ़ाइल सिस्टम ऐक्सेस एपीआई काम करता है, जबकि इसके बाद क्लासिक वर्शन का इस्तेमाल किया जाता है. दोनों ही मामलों में फ़ंक्शन, फ़ाइलों का कलेक्शन दिखाता है. हालांकि, अगर फ़ाइल सिस्टम ऐक्सेस एपीआई काम करता है, तो हर फ़ाइल ऑब्जेक्ट में handle प्रॉपर्टी में एक FileSystemFileHandle भी सेव होता है. इसलिए, हैंडल को डिस्क पर क्रम से लगाया जा सकता है.

const openFileOrFiles = async (multiple = false) => {
  // Feature detection. The API needs to be supported
  // and the app not run in an iframe.
  const supportsFileSystemAccess =
    "showOpenFilePicker" in window &&
    (() => {
      try {
        return window.self === window.top;
      } catch {
        return false;
      }
    })();
  // If the File System Access API is supported…
  if (supportsFileSystemAccess) {
    let fileOrFiles = undefined;
    try {
      // Show the file picker, optionally allowing multiple files.
      const handles = await showOpenFilePicker({ multiple });
      // Only one file is requested.
      if (!multiple) {
        // Add the `FileSystemFileHandle` as `.handle`.
        fileOrFiles = await handles[0].getFile();
        fileOrFiles.handle = handles[0];
      } else {
        fileOrFiles = await Promise.all(
          handles.map(async (handle) => {
            const file = await handle.getFile();
            // Add the `FileSystemFileHandle` as `.handle`.
            file.handle = handle;
            return file;
          })
        );
      }
    } catch (err) {
      // Fail silently if the user has simply canceled the dialog.
      if (err.name !== 'AbortError') {
        console.error(err.name, err.message);
      }
    }
    return fileOrFiles;
  }
  // Fallback if the File System Access API is not supported.
  return new Promise((resolve) => {
    // Append a new `<input type="file" multiple? />` and hide it.
    const input = document.createElement('input');
    input.style.display = 'none';
    input.type = 'file';
    document.body.append(input);
    if (multiple) {
      input.multiple = true;
    }
    // The `change` event fires when the user interacts with the dialog.
    input.addEventListener('change', () => {
      // Remove the `<input type="file" multiple? />` again from the DOM.
      input.remove();
      // If no files were selected, return.
      if (!input.files) {
        return;
      }
      // Return all files or just one file.
      resolve(multiple ? Array.from(input.files) : input.files[0]);
    });
    // Show the picker.
    if ('showPicker' in HTMLInputElement.prototype) {
      input.showPicker();
    } else {
      input.click();
    }
  });
};

इसके बारे में और पढ़ें

डेमो

एचटीएमएल

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="icon"
      href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📂</text></svg>"
    />
    <title>How to open one or multiple files</title>
  </head>
  <body>
    <h1>How to open one or multiple files</h1>
    <button type="button">Open file</button>
    <button class="multiple" type="button">Open files</button>
    <pre></pre>
  </body>
</html>

CSS


        :root {
  color-scheme: dark light;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 1rem;
  font-family: system-ui, sans-serif;
}

button {
  margin: 1rem;
}
        

JS


        const button = document.querySelector('button');
const buttonMultiple = document.querySelector('button.multiple');
const pre = document.querySelector('pre');

const openFileOrFiles = async (multiple = false) => {
  // Feature detection. The API needs to be supported
  // and the app not run in an iframe.
  const supportsFileSystemAccess =
    "showOpenFilePicker" in window &&
    (() => {
      try {
        return window.self === window.top;
      } catch {
        return false;
      }
    })();

  // If the File System Access API is supported…
  if (supportsFileSystemAccess) {
    let fileOrFiles = undefined;
    try {
      // Show the file picker, optionally allowing multiple files.
      fileOrFiles = await showOpenFilePicker({ multiple });
      if (!multiple) {
        // Only one file is requested.
        fileOrFiles = fileOrFiles[0];
      }
    } catch (err) {
      // Fail silently if the user has simply canceled the dialog.
      if (err.name !== 'AbortError') {
        console.error(err.name, err.message);
      }
    }
    return fileOrFiles;
  }
  // Fallback if the File System Access API is not supported.
  return new Promise((resolve) => {
    // Append a new `` and hide it.
    const input = document.createElement('input');
    input.style.display = 'none';
    input.type = 'file';
    document.body.append(input);
    if (multiple) {
      input.multiple = true;
    }
    // The `change` event fires when the user interacts with the dialog.
    input.addEventListener('change', () => {
      // Remove the `` again from the DOM.
      input.remove();
      // If no files were selected, return.
      if (!input.files) {
        return;
      }
      // Return all files or just one file.
      resolve(multiple ? input.files : input.files[0]);
    });
    // Show the picker.
    if ('showPicker' in HTMLInputElement.prototype) {
      input.showPicker();
    } else {
      input.click();
    }
  });
};

button.addEventListener('click', async () => {
  const file = await openFileOrFiles();
  if (!file) {
    return;
  }
  pre.textContent += `${file.name}\n`;
});

buttonMultiple.addEventListener('click', async () => {
  const files = await openFileOrFiles(true);
  if (!files) {
    return;
  }
  Array.from(files).forEach((file) => (pre.textContent += `${file.name}\n`));
});