Method description:
Synchronized version of rename() .
Grammar:
fs.renameSync(oldPath, newPath)
Since this method belongs to the fs module, the fs module needs to be introduced before use (var fs= require(“fs”) )
Receive parameters:
oldPath original path
newPath New path
Example:
var fs = require('fs');
fs.renameSync('125.txt','126.txt');
Source code:
fs.renameSync = function(oldPath, newPath) {
nullCheck(oldPath);
nullCheck(newPath);
Return binding.rename(pathModule._makeLong(oldPath),
pathModule._makeLong(newPath));
};
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