Ask Your Question
4

How can I get a record of all the files in a public folder in Laravel?

asked 2021-12-18 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-07-31 01:00:00 +0000

scrum gravatar image

To get a record of all the files in a public folder in Laravel, you can use the following code:

$files = Storage::disk('public')->files();

This will give you an array of file names in the public disk. If you want to get detailed information about each file, you can use the allFiles() method instead:

$files = Storage::disk('public')->allFiles();

This will give you an array of file paths, where each path includes the storage path and the file name. You can then parse the paths to get the file names or other details you need.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-12-18 11:00:00 +0000

Seen: 12 times

Last updated: Jul 31 '21