Skip to content

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')

} })

更新日志

2025/2/16 15:37
查看所有更新日志
  • 0e103-fix:全文搜索样式
  • 1946f-添加布尔运算
  • 51ebd-docs: 初始版本