1. 首页
  2. 数据库
  3. 其它
  4. temp write:将stringbufferstream写入随机临时文件 源码

temp write:将stringbufferstream写入随机临时文件 源码

上传者: 2021-05-12 09:19:01上传 ZIP文件 6.88KB 热度 23次
临时写 将字符串/缓冲区/流写入随机临时文件 安装 $ npm install temp-write 用法 import fs from 'node:fs' ; import tempWrite from 'temp-write' ; const filePath = tempWrite . sync ( 'unicorn' ) ; //=> '/var/folders/_1/tk89k8215ts0rg0kmb096nj80000gn/T/4049f192-43e7-43b2-98d9-094e6760861b' fs . readFileSync ( filePath , 'utf8' ) ; //=> 'unicorn' tempWrite . sync ( 'unicorn' , 'pony.png' ) ; //=> '/var/folders/_1/tk89k8215ts0rg
用户评论