Python tempfile模块学习笔记(临时文件)
admin
2023-07-31 02:07:58
0

tempfile.TemporaryFile

如何你的应用程序需要一个临时文件来存储数据,但不需要同其他程序共享,那么用TemporaryFile函数创建临时文件是最好的选择。其他的应用程序是无法找到或打开这个文件的,因为它并没有引用文件系统表。用这个函数创建的临时文件,关闭后会自动删除。

实例一:

复制代码 代码如下:
import os
import tempfile

print \’Building a file name yourself:\’
filename = \’/tmp/guess_my_name.%s.txt\’ % os.getpid()
temp = open(filename, \’w+b\’)
try:
    print \’temp:\’, temp
    print \’temp.name:\’, temp.name
finally:
    temp.close()
    os.remove(filename)     # Clean up the temporary file yourself

print
print \’TemporaryFile:\’
temp = tempfile.TemporaryFile()
try:
    print \’temp:\’, temp
    print \’temp.name:\’, temp.name
finally:
    temp.close()  # Automatically cleans up the file

这个例子说明了普通创建文件的方法与TemporaryFile()的不同之处,注意:用TemporaryFile()创建的文件没有文件名

输出:

复制代码 代码如下:
$ python tempfile_TemporaryFile.py

Building a file name yourself:

temp:

temp.name: /tmp/guess_my_name.14932.txt

TemporaryFile:

temp: \’, mode \’w+b\’ at 0x1004486f0>

temp.name:

 

默认情况下使用w+b权限创建文件,在任何平台中都是如此,并且程序可以对它进行读写。这个例子说明了普通创建文件的方法与TemporaryFile()的不同之处,注意:用TemporaryFile()创建的文件没有文件名

复制代码 代码如下:
$ python tempfile_TemporaryFile.py

Building a file name yourself:

temp:

temp.name: /tmp/guess_my_name.14932.txt

TemporaryFile:

temp: \’, mode \’w+b\’ at 0x1004486f0>

temp.name:

默认情况下使用w+b权限创建文件,在任何平台中都是如此,并且程序可以对它进行读写。

实例二:

复制代码 代码如下:
import os
import tempfile

temp = tempfile.TemporaryFile()
try:
    temp.write(\’Some data\’)
    temp.seek(0)

    print temp.read()
finally:
    temp.close()

写入侯,需要使用seek(),为了以后读取数据。

输出:

复制代码 代码如下:

$ python tempfile_TemporaryFile_binary.py

Some data

如果你想让文件以text模式运行,那么在创建的时候要修改mode为\’w+t\’。

实例三:

复制代码 代码如下:
import tempfile

f = tempfile.TemporaryFile(mode=\’w+t\’)
try:
    f.writelines([\’first\\n\’, \’second\\n\’])
    f.seek(0)

    for line in f:
        print line.rstrip()
finally:
    f.close()

输出:
复制代码 代码如下:
$ python tempfile_TemporaryFile_text.py

first

second

tempfile.NamedTemporaryFile

如果临时文件会被多个进程或主机使用,那么建立一个有名字的文件是最简单的方法。这就是NamedTemporaryFile要做的,可以使用name属性访问它的名字

复制代码 代码如下:
import os
import tempfile

temp = tempfile.NamedTemporaryFile()
try:
    print \’temp:\’, temp
    print \’temp.name:\’, temp.name
finally:
    # Automatically cleans up the file
    temp.close()
print \’Exists after close:\’, os.path.exists(temp.name)

尽管文件带有名字,但它仍然会在close后自动删除

输出:

复制代码 代码如下:
$ python tempfile_NamedTemporaryFile.py

temp: \’, mode \’w+b\’ at 0x1004481e0>

temp.name: /var/folders/9R/9R1t+tR02Raxzk+F71Q50U+++Uw/-Tmp-/tmp0zHZvX

Exists after close: False

tempfile.mkdtemp

创建临时目录,这个不多说,直接看例子:

复制代码 代码如下:
import os
import tempfile

directory_name = tempfile.mkdtemp()
print directory_name
# Clean up the directory yourself
os.removedirs(directory_name)

输出
复制代码 代码如下:
$ python tempfile_mkdtemp.py

/var/folders/9R/9R1t+tR02Raxzk+F71Q50U+++Uw/-Tmp-/tmpB1CR8M

注意:目录需要手动删除。

Predicting Names

用3个参数来控制文件名,名字产生公式:dir + prefix + random + suffix

实例:

复制代码 代码如下:
import tempfile

temp = tempfile.NamedTemporaryFile(suffix=\’_suffix\’,
                                   prefix=\’prefix_\’,
                                   dir=\’/tmp\’,
                                   )
try:
    print \’temp:\’, temp
    print \’temp.name:\’, temp.name
finally:
    temp.close()

输出:

复制代码 代码如下:
$ python tempfile_NamedTemporaryFile_args.py

temp: \’, mode \’w+b\’ at 0x1004481e0>

temp.name: /tmp/prefix_UyCzjc_suffix

tempfile.mkstemp([suffix=\’\'[, prefix=\’tmp\'[, dir=None[, text=False]]]])

    mkstemp方法用于创建一个临时文件。该方法仅仅用于创建临时文件,调用tempfile.mkstemp函数后,返回包含两个元素的元组,第一个元素指示操作该临时文件的安全级别,第二个元素指示该临时文件的路径。参数suffix和prefix分别表示临时文件名称的后缀和前缀;dir指定了临时文件所在的目录,如果没有指定目录,将根据系统环境变量TMPDIR, TEMP或者TMP的设置来保存临时文件;参数text指定了是否以文本的形式来操作文件,默认为False,表示以二进制的形式来操作文件。

tempfile.mktemp([suffix=\’\'[, prefix=\’tmp\'[, dir=None]]])

    mktemp用于返回一个临时文件的路径,但并不创建该临时文件。

tempfile.tempdir

    该属性用于指定创建的临时文件(夹)所在的默认文件夹。如果没有设置该属性或者将其设为None,Python将返回以下环境变量TMPDIR, TEMP, TEMP指定的目录,如果没有定义这些环境变量,临时文件将被创建在当前工作目录。

tempfile.gettempdir()

    gettempdir()则用于返回保存临时文件的文件夹路径。

 

相关内容

热门资讯

Mobi、epub格式电子书如... 在wps里全局设置里有一个文件关联,打开,勾选电子书文件选项就可以了。
定时清理删除C:\Progra... C:\Program Files (x86)下面很多scoped_dir开头的文件夹 写个批处理 定...
scoped_dir32_70... 一台虚拟机C盘总是莫名奇妙的空间用完,导致很多软件没法再运行。经过仔细检查发现是C:\Program...
500 行 Python 代码... 语法分析器描述了一个句子的语法结构,用来帮助其他的应用进行推理。自然语言引入了很多意外的歧义,以我们...
小程序支付时提示:appid和... [Q]小程序支付时提示:appid和mch_id不匹配 [A]小程序和微信支付没有进行关联,访问“小...
pycparser 是一个用... `pycparser` 是一个用 Python 编写的 C 语言解析器。它可以用来解析 C 代码并构...
微信小程序使用slider实现... 众所周知哈,微信小程序里面的音频播放是没有进度条的,但最近有个项目呢,客户要求音频要有进度条控制,所...
65536是2的几次方 计算2... 65536是2的16次方:65536=2⁶ 65536是256的2次方:65536=256 6553...
Apache Doris 2.... 亲爱的社区小伙伴们,我们很高兴地向大家宣布,Apache Doris 2.0.0 版本已于...
项目管理和工程管理的区别 项目管理 项目管理,顾名思义就是专注于开发和完成项目的管理,以实现目标并满足成功标准和项目要求。 工...