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
I am encountering issues while trying to list all files using the Storage facade with the 'bunny' disk.
Specifically, I am able to retrieve a file from a specific path using Storage::disk('bunny')->get($path), but when attempting to list all files, I receive an empty array.
Additionally, how can i list content of subfolders?
I am encountering issues while trying to list all files using the Storage facade with the 'bunny' disk.
Specifically, I am able to retrieve a file from a specific path using
Storage::disk('bunny')->get($path)
, but when attempting to list all files, I receive an empty array.Additionally, how can i list content of subfolders?
$files = Storage::disk('bunny')->allFiles()
dd($files); // returns empty array
$contents = Storage::disk('bunny')->listContents('specific-folder-path')
dd($contents); // returns empty array
The text was updated successfully, but these errors were encountered: