forked from cube-root/directory-serve
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File Folder Remoev Functionality issue cube-root#14
- Loading branch information
1 parent
cc02cc2
commit cea3ef2
Showing
3 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
const fs = require('fs-extra'); | ||
|
||
const fileRemove = async (req, res, { path } = {}) => { | ||
|
||
await new Promise((resolve, reject) => { | ||
|
||
fs.remove(path, err => { | ||
if(err) { | ||
reject(err); | ||
}else{ | ||
resolve(); | ||
} | ||
|
||
}); | ||
|
||
}); | ||
return res.redirect('/'); | ||
}; | ||
|
||
module.exports = { | ||
fileRemove, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters