0

请帮我从 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')
4

1 回答 1

0

只是增加了延迟,事情就奏效了。

返回语句前延迟 5 秒

于 2015-03-24T10:16:05.443 回答