2025-10-01 19:55:38 +02:00

52 lines
1.8 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var FSPath = /** @class */ (function () {
function FSPath(path) {
if (path.constructor === String) {
var sPath = path;
var doubleIndex = void 0;
while ((doubleIndex = sPath.indexOf('//')) !== -1)
sPath = sPath.substr(0, doubleIndex) + sPath.substr(doubleIndex + 1);
this.paths = sPath.replace(/(^\/|\/$)/g, '').split('/');
}
else if (path.constructor === FSPath)
this.paths = path.paths.filter(function (x) { return true; }); // clone
else
this.paths = path;
}
FSPath.prototype.isRoot = function () {
return this.paths.length === 0 || this.paths.length === 1 && this.paths[0].length === 0;
};
FSPath.prototype.fileName = function () {
return this.paths[this.paths.length - 1];
};
FSPath.prototype.rootName = function () {
return this.paths[0];
};
FSPath.prototype.parentName = function () {
return this.paths[this.paths.length - 2];
};
FSPath.prototype.getParent = function () {
return new FSPath(this.paths.slice(0, this.paths.length - 1));
};
FSPath.prototype.hasParent = function () {
return this.paths.length >= 2;
};
FSPath.prototype.removeRoot = function () {
this.paths.splice(0, 1);
};
FSPath.prototype.getChildPath = function (childName) {
var path = this.clone();
path.paths.push(childName);
return path;
};
FSPath.prototype.clone = function () {
return new FSPath(this);
};
FSPath.prototype.toString = function () {
return '/' + this.paths.join('/');
};
return FSPath;
}());
exports.FSPath = FSPath;