|
|
|
@ -157,12 +157,13 @@ class FileProvider { |
|
|
|
|
* @param {*} path is the folder to be removed |
|
|
|
|
*/ |
|
|
|
|
remove (path) { |
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
path = this.removePrefix(path) |
|
|
|
|
if (window.remixFileSystem.existsSync(path)) { |
|
|
|
|
const stat = window.remixFileSystem.statSync(path) |
|
|
|
|
try { |
|
|
|
|
if (!stat.isDirectory()) { |
|
|
|
|
return this.removeFile(path) |
|
|
|
|
resolve(this.removeFile(path)) |
|
|
|
|
} else { |
|
|
|
|
const items = window.remixFileSystem.readdirSync(path) |
|
|
|
|
if (items.length !== 0) { |
|
|
|
@ -182,10 +183,11 @@ class FileProvider { |
|
|
|
|
} |
|
|
|
|
} catch (e) { |
|
|
|
|
console.log(e) |
|
|
|
|
return false |
|
|
|
|
return resolve(false) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return true |
|
|
|
|
return resolve(true) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
removeFile (path) { |
|
|
|
|