python – 使用tempfile为我的所有临时文件创建一个子目录

前端之家收集整理的这篇文章主要介绍了python – 使用tempfile为我的所有临时文件创建一个子目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我一直在使用带有前缀的tempfile.mkdtemp来创建我的临时文件.这导致我的tmp文件夹中有很多不同的目录,其中包含’tmp / myprefix {uniq-string} /’.

我想更改它并有一个子目录,以便我创建的临时文件夹都在一个主目录下,这样前缀实际上是tmp’tmp / myprefix / {uniq-string} /’的子文件夹.

另外,我不想覆盖tempfile的系统来定义默认的tmp目录.

我尝试使用’prefix’和’dir’参数但没有成功.

最佳答案
要使用dir参数,必须确保dir文件夹存在.这样的事情应该有效:

import os
import tempfile

#define the location of 'mytemp' parent folder relative to the system temp
sysTemp = tempfile.gettempdir()
myTemp = os.path.join(sysTemp,'mytemp')

#You must make sure myTemp exists
if not os.path.exists(myTemp):
    os.makedirs(myTemp)

#now make your temporary sub folder
tempdir = tempfile.mkdtemp(suffix='foo',prefix='bar',dir=myTemp)

print tempdir
原文链接:https://www.f2er.com/python/439532.html

猜你在找的Python相关文章