FileSystemHandle.name
Draft: This page is not complete.
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.
Syntax
var String = FileSystemHandle.name;
Value
USVString
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
Specification |
---|
File System Access # ref-for-dom-filesystemhandle-name① |
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 |
No |
No |
86 |
No |
No |
No |
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