mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
improving absolute path checking
This commit is contained in:
parent
f3cd6e5b34
commit
1685f4ed28
@ -13,16 +13,12 @@ class ProjectPathClass {
|
||||
this.reset();
|
||||
}
|
||||
|
||||
isAbsolutePath(pathStr: string) {
|
||||
return path.resolve(pathStr) === path.normalize(pathStr);
|
||||
}
|
||||
|
||||
normalizeRelative(pathStr: string) {
|
||||
return path.join(pathStr, path.sep);
|
||||
}
|
||||
|
||||
getAbsolutePath(pathStr: string): string {
|
||||
return this.isAbsolutePath(pathStr) ? pathStr : path.join(this.Root, pathStr);
|
||||
return path.isAbsolute(pathStr) ? pathStr : path.join(this.Root, pathStr);
|
||||
}
|
||||
|
||||
getRelativePathToImages(pathStr: string): string {
|
||||
|
Loading…
Reference in New Issue
Block a user