@@ -14,7 +14,7 @@ const version_id = 'dev',
1414
1515/** @summary version date
1616 * @desc Release date in format day/month/year like '14/04/2022' */
17- version_date = '25 /02/2026',
17+ version_date = '26 /02/2026',
1818
1919/** @summary version id and date
2020 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -127323,9 +127323,8 @@ class TLocalFile extends TFile {
127323127323 this.fUseStampPar = false;
127324127324 this.fLocalFile = file;
127325127325 this.fEND = file.size;
127326- this.fFullURL = file.name;
127327- this.fURL = file.name;
127328- this.fFileName = file.name;
127326+ this.fFullURL = this.fURL = file.name;
127327+ this.assignFileName(file.name);
127329127328 }
127330127329
127331127330 /** @summary Open local file
@@ -127393,10 +127392,10 @@ class TNodejsFile extends TFile {
127393127392 this.fs = fs;
127394127393
127395127394 return new Promise((resolve, reject) => {
127396- this.fs.open(this.fFileName , 'r', (status, fd) => {
127395+ this.fs.open(this.fFullURL , 'r', (status, fd) => {
127397127396 if (status) {
127398127397 console.log(status.message);
127399- reject(Error(`Not possible to open ${this.fFileName } inside node.js`));
127398+ reject(Error(`Not possible to open ${this.fFullURL } inside node.js`));
127400127399 } else {
127401127400 const stats = this.fs.fstatSync(fd);
127402127401 this.fEND = stats.size;
@@ -127418,7 +127417,7 @@ class TNodejsFile extends TFile {
127418127417 }
127419127418
127420127419 if (!this.fs || !this.fd) {
127421- reject(Error(`File is not opened ${this.fFileName }`));
127420+ reject(Error(`File is not opened ${this.fFullURL }`));
127422127421 return;
127423127422 }
127424127423
@@ -127501,7 +127500,7 @@ class TProxyFile extends TFile {
127501127500 return Promise.reject(Error(`Cannot access other file ${filename}`));
127502127501
127503127502 if (!this.proxy)
127504- return Promise.reject(Error(`File is not opened ${this.fFileName }`));
127503+ return Promise.reject(Error(`File is not opened ${this.fFullURL }`));
127505127504
127506127505 if (isFunc(this.proxy.readBuffers)) {
127507127506 return this.proxy.readBuffers(place).then(arr => {
0 commit comments