Node.js remove file

node.js

How do I delete a file with node.js?

http://nodejs.org/api/fs.html#fs_fs_rename_oldpath_newpath_callback

I don't see a remove command?

Best Answer

I think you want to use fs.unlink.

More info on fs can be found here.