ファイル エクスプローラから開いたファイルを処理する方法

Palances Liao 氏
Palances Liao

まず、ウェブアプリ マニフェストで file_handlers 属性を宣言します。File Handling API では、action プロパティ(処理 URL)と accept プロパティを指定する必要があります。このプロパティは、MIME タイプをキーと配列として、対応するファイル拡張子を持つオブジェクトです。

{
 
"file_handlers": [
   
{
     
"action": "./",
     
"accept": {
       
"image/*": [".jpg", ".jpeg", ".png", ".webp", ".svg"]
     
}
   
}
 
]
}

次に、File Handling API を使用し、launchQueue を介して開いたファイルを命令的に処理する必要があります。

if ('launchQueue' in window && 'files' in LaunchParams.prototype) {
  launchQueue
.setConsumer((launchParams) => {
   
if (!launchParams.files.length) {
     
return;
   
}
   
for (const fileHandle of launchParams.files) {
     
// Handle the file.
   
}
 
});
}

対応ブラウザ

  • 102
  • 102
  • x
  • x

従来のやり方

従来の DataTransferItem.getAsFile() メソッドの使用

File Handling API がサポートされていない場合でも、ファイル エクスプローラーからアプリにファイルをドラッグ&ドロップできます。DataTransferItem.getAsFile() メソッドは、ドラッグデータ アイテムの File オブジェクトを返します。アイテムがファイルでない場合、このメソッドは null を返します。ファイルを読み取ることはできますが、書き戻すことはできません。この方法には、ディレクトリがサポートされていないという欠点があります。

対応ブラウザ

  • 11
  • 12
  • 50
  • 5.1

ソース

段階的な補正

以下のスニペットでは、利用可能な場合は File Handling API を使用し、さらにドラッグ&ドロップ ハンドラを登録して、ドラッグされたファイルを処理できるようにします。

ウェブアプリ マニフェストで処理できるファイル形式を宣言します。File Handling API をサポートしていないブラウザは、これを無視します。

{
 
"file_handlers": [
   
{
     
"action": "./",
     
"accept": {
       
"image/*": [".jpg", ".jpeg", ".png", ".webp", ".svg"]
     
}
   
}
 
]
}
// File Handling API
const handleLaunchFiles = () => {
  window
.launchQueue.setConsumer((launchParams) => {
   
if (!launchParams.files.length) {
     
return;
   
}
    launchParams
.files.forEach(async (handle) => {
     
const file = await handle.getFile();
      console
.log(`File: ${file.name}`);
     
// Do something with the file.
   
});
 
});
};

if ('launchQueue' in window && 'files' in LaunchParams.prototype) {
  handleLaunchFiles
();
}

// This is the drag and drop zone.
const elem = document.querySelector('main');
// Prevent navigation.
elem
.addEventListener('dragover', (e) => {
  e
.preventDefault();
});
// Visually highlight the drop zone.
elem
.addEventListener('dragenter', (e) => {
  elem
.style.outline = 'solid red 1px';
});
// Visually unhighlight the drop zone.
elem
.addEventListener('dragleave', (e) => {
  elem
.style.outline = '';
});
// This is where the drop is handled.
elem
.addEventListener('drop', async (e) => {
 
// Prevent navigation.
  e
.preventDefault();
 
// Unhighlight the drop zone.
  elem
.style.outline = '';
 
// Prepare an array of promises…
 
const fileHandlesPromises = [...e.dataTransfer.items]
   
// …by including only files (where file misleadingly means actual file _or_
   
// directory)…
   
.filter((item) => item.kind === 'file')
   
// …and, depending on previous feature detection…
   
.map((item) => item.getAsFile());
 
// Loop over the array of promises.
 
for await (const handle of fileHandlesPromises) {
   
// This is where we can actually exclusively act on the files.
   
if (handle.isFile) {
      console
.log(`File: ${handle.name}`);
     
// Do something with the file.
   
}
 
}
});

参考資料

デモ

<!DOCTYPE html>
<html lang="en">
 
<head>
   
<meta charset="utf-8" />
   
<meta name="viewport" content="width=device-width, initial-scale=1" />
   
<link rel="manifest" href="manifest.json" />
   
<title>How to handle files opened from the file explorer</title>
   
<link rel="stylesheet" href="style.css" />
   
<!-- TODO: Devsite - Removed inline handlers -->
   
<!-- <script>
      if ('serviceWorker' in navigator) {
        window.addEventListener('load', async () => {
          const registration = await navigator.serviceWorker.register(
            'sw.js',
          );
          console.log(
            'Service worker registered for scope',
            registration.scope,
          );
        });
      }
    </script>
    <script src="script.js" type="module"></script> -->

 
</head>
 
<body>
   
<h1>How to handle files opened from the file explorer</h1>
   
<p>Install the app. After the installation, try opening an image file from the file explorer with the app.
 
</body>
</html>

        html
{
 
box-sizing: border-box;
 
font-family: system-ui, sans-serif;
 
color-scheme: dark light;
}

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

body
{
 
margin: 1rem;
}

img
{
 
height: auto;
 
max-width: 100%;
 
display: block;
}
       

       
if ('launchQueue' in window && 'files' in LaunchParams.prototype) {
  launchQueue
.setConsumer((launchParams) => {
   
if (!launchParams.files.length) {
     
return;
   
}
   
for (const fileHandle of launchParams.files) {
      document
.body.innerHTML += `

${fileHandle.name}

`;
   
}
 
});
}