python创建临时文件夹
python创建临时文件夹,代码在mac下进行测试,windows下请自行测试
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/21 功能描述:python创建临时文件夹 """ import tempfile, os tempfd, tempname = tempfile.mkstemp('.suffix') os.write(tempfd, b"pidancode.com") os.close(tempfd) os.unlink(tempname)
以上代码在python3.9+mac环境测试通过
相关文章