0

Perforce からデータ/ファイルを読み取るのを手伝ってください。
以下のコードを使用して、この python スクリプトを使用して Perforce からファイルを読み取ろうとしました。

pycharm で段階的に実行する場合でも、同じコードが Python シェルで正常に動作し、完全に動作します。

# copy the file from the P4 to the local computer
def getp4file(outfile,errfile,path):

    path = 'p4 print ' + path
    with open(outfile, "wb") as out, open(errfile, "wb") as err:
        subprocess.Popen(path, stdout=out, stderr=err)
    out.close()
    err.close()
    return


getp4file('config.txt', 'err.txt', 'path_of_the_file')
4

1 に答える 1

0

遅延を追加しただけで、うまくいきました。

return ステートメントの前に 5 秒の遅延

于 2015-03-24T10:16:05.443 に答える