-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFs.php
More file actions
89 lines (72 loc) · 1.94 KB
/
Fs.php
File metadata and controls
89 lines (72 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
namespace Webteractive\Devstack;
use League\Flysystem\Filesystem;
use League\Flysystem\Local\LocalFilesystemAdapter;
class Fs
{
protected $filesystem;
protected $basePath;
public function __construct(string $location)
{
$this->filesystem = new Filesystem(
new LocalFilesystemAdapter($this->basePath = $location)
);
}
public static function make($location)
{
return new static($location);
}
public function exists($path)
{
return $this->filesystem->fileExists($path)
|| $this->filesystem->directoryExists($path);
}
public function doesntExists($path)
{
return !$this->exists($path);
}
public function mkdir(string $location, array $config = [])
{
$this->filesystem->createDirectory($location, $config);
}
public function put($path, $contents, $config = [])
{
$this->filesystem->write($path, $contents, $config);
}
public function delete($path)
{
$this->filesystem->delete($path);
}
public function deleteDirectory($path)
{
$this->filesystem->deleteDirectory($path);
}
public function get($path)
{
return $this->filesystem->read($path);
}
public function path($location)
{
return join('/', [$this->basePath, $location]);
}
public function move($source, $destination, $config = [])
{
$this->filesystem->move($source, $destination, $config);
}
public function copy($source, $destination, $config = [])
{
$this->filesystem->copy($source, $destination, $config);
}
public function directories($path)
{
return $this->filesystem
->listContents($path, false)
->filter(fn ($item) => $item->isDir())
->map(fn ($item) => $item->path())
->toArray();
}
public function filesystem()
{
return $this->filesystem;
}
}