Filesystem::allDirectories()
  • References/PHP/Laravel/Contracts/Filesystem

array allDirectories(string|null $directory = null) Get all (recursive)

2025-01-10 15:47:30
Filesystem::deleteDirectory()
  • References/PHP/Laravel/Contracts/Filesystem

bool deleteDirectory(string $directory) Recursively delete a directory

2025-01-10 15:47:30
Filesystem::size()
  • References/PHP/Laravel/Contracts/Filesystem

int size(string $path) Get the file size of a given file.

2025-01-10 15:47:30
Filesystem::lastModified()
  • References/PHP/Laravel/Contracts/Filesystem

int lastModified(string $path) Get the file's last modification time.

2025-01-10 15:47:30
Cloud::makeDirectory()
  • References/PHP/Laravel/Contracts/Filesystem

bool makeDirectory(string $path) Create a directory.

2025-01-10 15:47:30
Cloud::move()
  • References/PHP/Laravel/Contracts/Filesystem

bool move(string $from, string $to) Move a file to a new location.

2025-01-10 15:47:30
Filesystem::allFiles()
  • References/PHP/Laravel/Contracts/Filesystem

array allFiles(string|null $directory = null) Get all of the files from

2025-01-10 15:47:30
Filesystem::exists()
  • References/PHP/Laravel/Contracts/Filesystem

bool exists(string $path) Determine if a file exists.

2025-01-10 15:47:30
Filesystem::directories()
  • References/PHP/Laravel/Contracts/Filesystem

array directories(string|null $directory = null, bool $recursive = false)

2025-01-10 15:47:30
Cloud::put()
  • References/PHP/Laravel/Contracts/Filesystem

bool put(string $path, string|resource $contents, string $visibility = null)

2025-01-10 15:47:30