Fs模块
约 120 字小于 1 分钟
2024-09-07
注意
重复写入会自动覆盖掉之前的内容
提示
回调函数写法请参考Js进阶开发(2) ```js import fs from 'fs' const filepath = '/path/file' //判断文件存在 fs.access(filepath,(err) =>{ if(err){ console.log('file no exist') }else{
//写入内容
fs.writeFile(filePath,'test text',err =>{
if(err){
console.log(err)
console.log('fail to write')
}else{
console.log('write success')
}
})
//读取文件
fs.readFile(filepath,(err,data)=>{
if(err){
console.log(err)
console.log('fail to read')
}else{
//转为字符串
console.log(data.toString())
}
})
console.log('file exist')
} })
更新日志
版权所有
版权归属:passwordgloo