-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtualPath.js
49 lines (42 loc) · 1.01 KB
/
virtualPath.js
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
const { Separator, Path, FileInfo } = require("./path");
class VirtualPath extends Path {
p = ''
isDir = false
constructor(p = '', isDir = false) {
super()
this.p = p
this.isDir = isDir
}
IsVirtual() {
return true
}
IsDir() {
return this.isDir
}
Info() {
return new FileInfo()
}
Exists() {
return true
}
String() {
return this.p
}
Name() {
const parts = this.String().split(Separator)
return parts[parts.length-1]
}
ParentPath() {
const parts = this.String().split(Separator),
absolutePath = parts.slice(0, parts.length-1).join(Separator)
return new VirtualPath(absolutePath, true)
}
ExcludePath(p = new Path()) {
let eventAbsolutePath = this.String().replaceAll(p.String(), '')
if (eventAbsolutePath.length && eventAbsolutePath[0] === Separator) {
eventAbsolutePath = eventAbsolutePath.slice(1, eventAbsolutePath.length)
}
return new VirtualPath(eventAbsolutePath, this.IsDir())
}
}
module.exports = VirtualPath