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')