Sistem File NODEJS #4 DELETE FILES
#4. DELETE FILES
Untuk menghapus file dengan modul File System, gunakan metode fs.unlink (). Metode fs.unlink () menghapus file yang ditentukan:
Example
Delete "filebaru.txt":
var fs = require('fs');
fs.unlink('filebaru.txt', function (err) {
if (err) throw err;
console.log('File deleted!');
});
Posting Komentar untuk "Sistem File NODEJS #4 DELETE FILES"