For循环在python烧瓶内无法正常工作

时间:2018-10-15 09:40:08

标签: python flask

嗨,我有一个小的python脚本,用于解压缩文件夹中存在的文件列表。下面是脚本。

app = Flask(__name__)
@app.route('/untarJson')

def untarJson():

    outdir="C:\\Users\\esrilka\\Documents\\Tar Files\\Untar"
    inputfilefolder="C:\\Users\\esrilka\\Documents\\Tar Files\\New tar files\\"  
    jsonfiles=[]  
    for filenames in os.listdir(inputfilefolder):
        if filenames.endswith(".tar.gz"):       
            head,tail= os.path.split(filenames)
            basename=os.path.splitext(os.path.splitext(tail)[0])[0]

            t = tarfile.open(os.path.join(inputfilefolder,filenames), 'r')
            for member in t.getmembers():

                if "autodiscovery/report.json" in member.name:
                    with open(os.path.join(outdir,basename + '.json' ), 'wb') as f:

                        f.write(t.extractfile('autodiscovery/report.json').read())





if __name__ == '__main__':
    app.run(debug=True)  

不用烧瓶就可以正常工作,并且在该文件夹中,我有四个tar文件,而所有4个文件都是未压缩的。

但是当我使用flask时,只有一个文件解压缩,并且仅显示一个文件名。

我该如何解压缩文件夹中的所有文件并返回文件名(即,短名称而不是完整路径)

1 个答案:

答案 0 :(得分:0)

看看下面的代码是否对您有用,我对您的原始代码只做了一点改动,并且没有任何问题。

请求完成后,所有可用的tar.gz文件都将解压缩,并显示文件名。

from flask import Flask, jsonify
import tarfile
import os

app = Flask(__name__)


@app.route('/untarJson')
def untarJson():
    outdir = "C:\\tests\\untared"
    inputfilefolder = "C:\\tests"
    jsonfiles = []
    for filenames in os.listdir(inputfilefolder):
        if filenames.endswith(".tar.gz"):
            head, tail = os.path.split(filenames)
            basename = os.path.splitext(os.path.splitext(tail)[0])[0]

            t = tarfile.open(os.path.join(inputfilefolder, filenames), 'r')
            for member in t.getmembers():

                if "autodiscovery/report.json" in member.name:
                    with open(os.path.join(outdir, basename + '.json'), 'wb') as f:
                        f.write(t.extractfile('autodiscovery/report.json').read())
                        jsonfiles.append(os.path.join(outdir, basename + '.json'))
    return jsonify(jsonfiles), 200


if __name__ == '__main__':
    app.run(debug=True)

请求完成后,将返回类似以下的内容(根据您的情况,输出将有所不同),
[ "C:\tests\untared\autodiscovery1.json", "C:\tests\untared\autodiscovery2.json", "C:\tests\untared\autodiscovery3.json" ]