使用“临时文件” python 中的文件夹
我最近编写了一个查询 PyPI 并下载包的脚本;但是,该包会下载到用户定义的文件夹中。
我想修改脚本,以便我下载的文件进入临时文件夹(如果未指定文件夹)。
*nix 机器中的临时文件文件夹是“/tmp”;我可以使用任何Python方法来查找特定机器中的临时文件文件夹吗?
如果没有,有人可以提出解决这个问题的替代方案吗?
I recently wrote a script which queries PyPI and downloads a package; however, the package gets downloaded to a user defined folder.
I`d like to modify the script in such a way that my downloaded files go into a temporary folder, if the folder is not specified.
The temporary-files folder in *nix machines is "/tmp" ; would there be any Python method I could use to find out the temporary-files folder in a particular machine?
If not, could someone suggest an alternative to this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Python 有一个用于使用临时文件和文件夹的内置模块。您可能需要
tempfile.mkdtemp()
。Python has a built-in module for using temporary files and folders. You probably want
tempfile.mkdtemp()
.也许是 tempfile 模块?
Perhaps the tempfile module?