You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The removeEntry() algorithm currently does not lock the removed entry. This means that, for example, a file with an open FileSystemWritableFileStream may be removed... at least according to the spec. Chromium and Firefox both reject with a NoModificationAllowedError in this case (and FileSystemWritableFileStream is not implemented on Safari)
removeEntry() may remove either a file or a directory. Support for locking a directory is tracked in #137
This also applies to the remove() method, which is being specified in #9
The text was updated successfully, but these errors were encountered:
The
removeEntry()
algorithm currently does not lock the removed entry. This means that, for example, a file with an openFileSystemWritableFileStream
may be removed... at least according to the spec. Chromium and Firefox both reject with aNoModificationAllowedError
in this case (andFileSystemWritableFileStream
is not implemented on Safari)removeEntry()
may remove either a file or a directory. Support for locking a directory is tracked in #137This also applies to the
remove()
method, which is being specified in #9The text was updated successfully, but these errors were encountered: