无法使用python脚本从Perforce读取数据

时间:2015-03-16 16:22:23

标签: python python-3.x perforce perforce-client-spec perforce-integrate

请帮助我阅读Perforce的数据/文件 我曾尝试使用以下代码使用此python脚本从Perforce中读取文件。

相同的代码在Python shell中运行良好,即使在pycharm中逐步执行它也能很好地工作。

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

1 个答案:

答案 0 :(得分:0)

只是添加了延迟,事情就有效了。

退货声明前延迟5秒