From 0d7ab458a5d99d9395de938316d9b71840b11026 Mon Sep 17 00:00:00 2001 From: Will <> Date: Mon, 15 Mar 2021 19:28:11 -0700 Subject: [PATCH] Fix FileSystemHandle references to File and Directory API --- files/en-us/web/api/filesystemhandle/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/en-us/web/api/filesystemhandle/index.html b/files/en-us/web/api/filesystemhandle/index.html index 50585bd5bcd1d28..3391cdecfe87035 100644 --- a/files/en-us/web/api/filesystemhandle/index.html +++ b/files/en-us/web/api/filesystemhandle/index.html @@ -10,19 +10,19 @@ - handle - working with files --- -
{{draft}}{{securecontext_header}}{{DefaultAPISidebar("File System Access API")}}
+
{{securecontext_header}}{{DefaultAPISidebar("File System Access API")}}
-

The FileSystemHandle interface of the {{domxref('File System Access API')}} is an object which represents an entry. Multiple handles can represent the same entry. For the most part you do not work with FileSystemEntry directly but rather it's child interfaces {{domxref('FileSystemFileEntry')}} and {{domxref('FileSystemDirectoryEntry')}}

+

The FileSystemHandle interface of the {{domxref('File System Access API')}} is an object which represents a file or directory entry. Multiple handles can represent the same entry. For the most part you do not work with FileSystemHandle directly but rather its child interfaces {{domxref('FileSystemFileHandle')}} and {{domxref('FileSystemDirectoryHandle')}}.

Interfaces based on FileSystemHandle

Below is a list of interfaces based on the FileSystemHandle interface.

-
{{domxref("FileSystemFileEntry")}}
-
Represents a handle to a file system entry.
-
{{domxref("FileSystemDirectoryEntry")}}
-
Provides a handle to a file system directory.
+
{{domxref("FileSystemFileHandle")}}
+
Represents a handle to a file entry.
+
{{domxref("FileSystemDirectoryHandle")}}
+
Provides a handle to a directory entry.

Properties