Method description:
Synchronized version of unlink(), delete file operation.
Grammar:
fs.unlinkSync(path)
Since this method belongs to the fs module, the fs module needs to be introduced before use (var fs= require(“fs”) )
Receive parameters:
path File path
Example:
var fs = require('fs');
var filepath = '126.txt';
fs.unlinkSync(filepath);
Source code:
fs.unlinkSync = function(path) {
nullCheck(path);
Return binding.unlink(pathModule._makeLong(path));
};
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn