欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

Emptying a Directory of All Files and Folders 删除目录下的所有文件和文件夹目录 (但不包括不包含本目录)清空目录下的所有文件和文件夹目录 自己亲自做的 有大用 有大大用

$success = File::cleanDirectory($directory);

下面是红色部分自己亲自做的 

\File::cleanDirectory(resource_path('views').'/frontcache/');




 

//应该也可以有下面的方法 不过下面的方法我没有试过
   I don't think if this is the best way to solve this. But I solved mine calling
  use Illuminate\Filesystem\Filesystem;
   //Then initiate new instance
  $file = new Filesystem;
  $file->cleanDirectory('storage/app/backgrounds');





//下面这个是删除目录及目录下的文件和子目录 (也包括删除这个目录本身,这个$directory是相对目录,至于相对谁

在  \config\filesystems.php 里面可以看到)

use Illuminate\Support\Facades\Storage;


Storage::deleteDirectory($directory);



普通分类: