Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. LaunchParams
  4. files

LaunchParams: files property

Limited availability

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

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

Thefiles read-only property of theLaunchParams interface returns an array ofFileSystemHandle objects representing any files passed along with the launch navigation via thePOST method.

Value

A read-only array ofFileSystemHandle objects.

Examples

js
if ("launchQueue" in window) {  window.launchQueue.setConsumer((launchParams) => {    if (launchParams.files) {      const files = launchParams.files;      for (file in files) {        // Do stuff with file handles      }    }  });}

Specifications

Specification
Web App Launch Handler API
# dom-launchparams-files

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp