dom / latest / filesystemhandle / name.html /

FileSystemHandle.name

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The name read-only property of the FileSystemHandle interface returns the name of the entry represented by handle.

Value

Examples

The following function allows the user to choose a file from the file picker and retrieve the name property.

// store a reference to our file handle
let fileHandle;

async function getFile() {
  // open file picker
  [fileHandle] = await window.showOpenFilePicker();

  const fileName = fileHandle.name;

}

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
name
86
86
No
No
72
15.2
No
86
No
No
15.2
14.0

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/FileSystemHandle/name