diff --git a/src/Things to do.txt b/src/Things to do.txt index 8e9420bd..23384e20 100644 --- a/src/Things to do.txt +++ b/src/Things to do.txt @@ -75,6 +75,7 @@ sudo n lts| stable | latest --(pick one) 29.) termial has issues with folder name containing spaces "screen folder" turn into screen +30.) Adding a new folder through the termial, causes the desktop to refresh. Even if the folder added is not to the desktop diff --git a/src/app/shared/system-service/file.service.ts b/src/app/shared/system-service/file.service.ts index ee701132..067e1e53 100644 --- a/src/app/shared/system-service/file.service.ts +++ b/src/app/shared/system-service/file.service.ts @@ -217,7 +217,7 @@ export class FileService{ console.log('createFolderAsync: folder already exists',exists); resolve(false); }else{ - this._fileSystem.mkdir(`${directory}/${fileName}`,'0777',(err) =>{ + this._fileSystem.mkdir(`${directory}/${fileName}`,0o777,(err) =>{ if(err){ console.log('createFolderAsync Error: folder creation',err); reject(false);