Currently, I am using fs.move and fs.remove (from fs-extra package) to move and delete file via nodeJS on Ubuntu 18.04, I want to monitor the progress of these operation. For copy, I can use progress-stream to measure the progress for copy or file download operation. I want something similar for delete and move operations on large number of files like in Windows explorer. Any npm module suggestion that does move and delete and shows progress is welcome too.
Asked
Active
Viewed 300 times
2
-
"I am using fs.move and fs.remove" what do you exactly mean? are these functions in the standard library? – kharandziuk Sep 21 '20 at 14:37
-
Hey @kharandziuk, they are from npm module called fs-extra. – Shashank Shekhar Sep 21 '20 at 19:59