LaunchParams: files プロパティ

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。

filesLaunchParams インターフェイスの読み取り専用プロパティで、 POST メソッドで起動ナビゲーションとともに渡されるすべてのファイルを表す FileSystemHandle オブジェクトの配列を返します。

FileSystemHandle オブジェクトの読み取り専用の配列です。

js
if ("launchQueue" in window) {
  window.launchQueue.setConsumer((launchParams) => {
    if (launchParams.files) {
      const files = launchParams.files;
      for (file in files) {
        // ファイルの処理
      }
    }
  });
}

仕様書

Specification
Web App Launch Handler API
# ref-for-dom-launchparams-files-1

ブラウザーの互換性

BCD tables only load in the browser

関連情報