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.
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.
A string.
The following function allows the user to choose a file from the file picker and retrieve the name
property.
js
// store a reference to our file handle let fileHandle; async function getFile() { // open file picker [fileHandle] = await window.showOpenFilePicker(); const fileName = fileHandle.name; }
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 | 111 | No | 72 | 15.2 | No | 86 | 111 | 61 | 15.2 | 14.0 |
© 2005–2023 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