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
Add support for pseudo-directories by @mzur in #29. This change does not affect the output of the high-level Flysystem API. However, the low-level API might have the following backwards incompatible changes: listContents() can now return an iterable of FileAttributesandDirectoryAttributes. These no longer include the extra_metadata with 'type' => 'file'. Use the class name or the type attribute instead.
write can't be used to create large objects anymore.
createDirectory throws an exception, as this is not supported by Swift.
Other notes:
The method signatures are now changed according to Flysystem 2. Most do not return a value anymore but throw an exception in case something went wrong.
The following methods are unsupported: createDirectory, visibility and setVisibility.