Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Web Workers.
The isSameEntry() method of the FileSystemHandle interface compares two handles to see if the associated entries (either a file or directory) match.
isSameEntry(fileSystemHandle)FileSystemHandleThe FileSystemHandle to match against the handle on which the method is invoked.
A Promise that fulfills with a Boolean.
The following function compares a single entry with an array of entries, and returns a Promise that fulfils with a new array with any matching entries removed.
async function removeMatches(fileEntry, entriesArr) {
const newArr = [];
for (const entry of entriesArr) {
if (!(await fileEntry.isSameEntry(entry))) {
newArr.push(entry);
}
}
return newArr;
}