কিভাবে এক বা একাধিক ফাইল খুলবেন

ফাইলগুলির সাথে ডিল করা ওয়েবে অ্যাপগুলির জন্য সবচেয়ে সাধারণ ক্রিয়াকলাপগুলির মধ্যে একটি৷ ঐতিহ্যগতভাবে, ব্যবহারকারীদের একটি ফাইল আপলোড করতে হবে, এতে কিছু পরিবর্তন করতে হবে এবং তারপরে এটি আবার ডাউনলোড করতে হবে, যার ফলে ডাউনলোড ফোল্ডারে একটি অনুলিপি থাকবে। ফাইল সিস্টেম অ্যাক্সেস API-এর মাধ্যমে, ব্যবহারকারীরা এখন সরাসরি ফাইল খুলতে, পরিবর্তন করতে এবং মূল ফাইলে পরিবর্তনগুলি সংরক্ষণ করতে পারে।

আধুনিক উপায়

ফাইল সিস্টেম অ্যাক্সেস API এর showOpenFilePicker() পদ্ধতি ব্যবহার করে

একটি ফাইল খুলতে, showOpenFilePicker() কল করুন, যা বাছাই করা ফাইল বা ফাইলগুলির একটি অ্যারের সাথে একটি প্রতিশ্রুতি প্রদান করে। আপনার একাধিক ফাইলের প্রয়োজন হলে, আপনি পদ্ধতিতে { multiple: true, } পাস করতে পারেন।

ব্রাউজার সমর্থন

  • 86
  • 86
  • এক্স
  • এক্স

উৎস

ক্লাসিক উপায়

<input type="file"> উপাদান ব্যবহার করে

একটি পৃষ্ঠার <input type="file"> উপাদান ব্যবহারকারীকে এটিতে ক্লিক করতে এবং এক বা একাধিক ফাইল খুলতে দেয়। কৌশলটি এখন জাভাস্ক্রিপ্ট সহ একটি পৃষ্ঠায় উপাদানটিকে অদৃশ্যভাবে সন্নিবেশ করা এবং এটিকে প্রোগ্রাম্যাটিকভাবে ক্লিক করা।

ব্রাউজার সমর্থন

  • 1
  • 12
  • 1
  • 1

উৎস

প্রগতিশীল বর্ধিতকরণ

নীচের পদ্ধতিটি ফাইল সিস্টেম অ্যাক্সেস API ব্যবহার করে যখন এটি সমর্থিত হয় এবং অন্যথায় ক্লাসিক পদ্ধতিতে ফিরে আসে। উভয় ক্ষেত্রেই ফাংশন ফাইলের একটি অ্যারে ফেরত দেয়, কিন্তু যেখানে ফাইল সিস্টেম অ্যাক্সেস API সমর্থিত হয়, সেক্ষেত্রে প্রতিটি ফাইল অবজেক্টের 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>

সিএসএস


        :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;
}
        

জেএস


        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`));
});