• 技术文章 >Python技术 >Python基础教程

    python tempfile创建文件

    小妮浅浅小妮浅浅2021-07-29 09:31:04原创2445

    说明

    1、创建临时文件一般使用的模块就是tempfile。

    2、模块库函数,tempfile.mktemp不安全,禁止使用、tempfile.mkstemp随机创建tmp文件,默认创建的文件。

    tempfile.mktemp 不安全,禁止使用

    tempfile.mkstemp 随机创建tmp文件,默认创建的文件在/tmp目录

    tempfile.TemporaryFile 内存中创建文件,文件不会存储在磁盘,关闭后即删除(可以使用)

    实例

    fd, path = tempfile.mkstemp()try:    with os.fdopen(fd, 'w') as tmp:        # do stuff with temp file        tmp.write('stuff')finally:    os.remove(path)

    以上就是python tempfile创建文件的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python tempfile
    上一篇:python finally语句如何使用 下一篇:python如何读取文件名

    相关文章推荐

    • Python threading模块的常用方法• Python如何自定义类继承threading.Thread• Python map接收参数的探究• Python装饰器的应用场景• python变量如何在作用域使用• python自由变量是什么• Python中JSON数据如何读取• Python如何用下标取得列表的单个值• Python切片获取列表多个值• Python如何在列表中添加新值• Python如何实现字符串排序• python标记删除如何实现?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网