Esempio n. 1
0
 public function setup()
 {
     clearstatcache();
     $fs = new Adapter\Local(__DIR__ . '/');
     $fs->deleteDir('files');
     $fs->createDir('files');
 }
Esempio n. 2
0
 public function setup()
 {
     clearstatcache();
     $fs = new Adapter\Local(__DIR__ . '/');
     $fs->deleteDir('files');
     $fs->createDir('files', new Config());
     $fs->write('file.txt', 'contents', new Config());
     $this->filesystem = new Filesystem($fs);
 }