Python3 内存文件/临时文件(qbit)

Posted qbit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 内存文件/临时文件(qbit)相关的知识,希望对你有一定的参考价值。

io.StringIO/io.BytesIO

  • 官方文档: https://docs.python.org/3/lib...

tempfile.TemporaryFile/tempfile.TemporaryDirectory

  • 官方文档: https://docs.python.org/3/lib...
  • 示例

    ### python 3.8
    import tempfile
    import zipfile
    
    zf = zipfile.ZipFile(\'xx.zip\', mode=\'r\')
    tmpdir = tempfile.TemporaryDirectory()
    zf.extractall(tmpdir.name)

pyfilesystem

  • 官方文档: https://docs.pyfilesystem.org/
本文出自 qbit snap

以上是关于Python3 内存文件/临时文件(qbit)的主要内容,如果未能解决你的问题,请参考以下文章