python提供了一个得到临时文件夹的模块
tempfile
可以很方便得到各个平台的临时文件夹,linux,windows,mac OS
下面是我在windows xp下面的执行结果
>>> import tempfile
>>> print tempfile.gettempdir()
c:docume~1admini~1locals~1temp
>>> f = tempfile.TemporaryFile()
>>> f.write('dddd')
>>> f.close()
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.