0

在 Python 中,我试图打开一个保存到 %TEMP% 目录的文件。我试过了:

file = open("%TEMP%\file.txt")

file = open("%%TEMP%%\file.txt")

file = open("%TEMP%\\file.txt")

file = open("%%TEMP%%\\file.txt")

并且总是得到(这个专门针对最后一个例子):

IOError: [Errno 2] No such file or directory: '%%TEMP%%\\file.txt'

为了理智起见,我从 Windows 命令提示符执行 atype %TEMP%\file.txt并打印出文件 OK。有什么帮助吗?

4

1 回答 1

5

使用os.environ

import os
f = open(os.path.join(os.environ['TEMP'], 'file.txt'))

你也可以使用os.path.expandvars

import os
f = open(os.path.expandvars(r'%TEMP%\file.txt'))
于 2013-07-22T16:01:03.400 回答