这是我用来获取文件信息的命令,其中只对修订版本感兴趣。 命令:
command='si revisioninfo D:/Documentation/file_folder/file.c'
process = Popen(args=command,stdout=PIPE,shell=True)
file_output=process.communicate()[0]
print file_output
输出:
Sandbox Name: D:/Documentation/project.pj
Revision: 1.7
Labels: Review_1
其中,我只想将修订数据分配给输出。