本文目录

Deno.maketempfilesync

🌙
手机阅读
本文目录结构

makeTempFileSync

  • makeTempFileSync(options?: MakeTempOptions): string

  • 以同步的方式在默认文件夹(另见 Deno.dir("temp"))中创建一个临时文件,如果指定了 dir , 则在指定的 dir 中创建。 其他可选的参数包括分别给文件名添加前缀的 prefix 和给文件名添加后缀的 sufix

    Synchronously creates a new temporary file in the default directory for temporary files (see also Deno.dir("temp")), unless dir is specified. Other optional options include prefixing and suffixing the directory name with prefix and suffix respectively.

    返回新建文件的完整路径。

    The full path to the newly created file is returned.

    多个程序同时调用该函数将会创建不同的文件。当不再需要该临时文件时,调用者应该主动删除该文件。

    Multiple programs calling this function simultaneously will create different files. It is the caller’s responsibility to remove the file when no longer needed.

      const tempFileName0 = Deno.makeTempFileSync(); // e.g. /tmp/419e0bf2
      const tempFileName1 = Deno.makeTempFileSync({ prefix: 'my_temp' });  //e.g. /tmp/my_temp754d3098
    

    需要 allow-write 权限。

    Requires allow-write permission.

参数

-   ##### Optional options: [MakeTempOptions](interfaces/deno.maketempoptions.html)

返回 string

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了