var fs = require("fs") ;
var txt = "Hello World";
function write(){
fs.exists(path, function (exists) { //path为文件夹路径
var retTxt = exists ? retTxt = '文件存在' : '文件不存在';
if(retTxt == '文件存在'){
fs.writeFile(path,txt,function (err) {
if (err){
return false;
} else{
console.log("写入成功");
}