I couldn't find any info regarding this question.
Is there even a way for node.js to send a file / folder to bin instead of fs.unlink / fs.rmdir?
For example:
Can you do something like sendToBin(path) to send a file to recycle bin (Windows) trash (MacOS) instead of running fs.unlink() to remove file from disk (I know that it just marks it with 0)
fs.sendToBin(path)instead offs.unlink(path)?binmeansTrash?fs.sendToBin()supposed to do?