我正在使用Perforce .NET API P4API.NET库并想知道是否有一个“p4文件”命令行等效,我可以调用它来返回我//中的文件列表(例如* .cpp)仓库?提前谢谢!
答案 0 :(得分:1)
快速浏览the docs并不会立即显示任何内容,但您始终可以使用P4Command.Run
运行任意Perforce命令,因此您仍然可以运行p4 files //depot/...cpp
。
答案 1 :(得分:1)
这是一个适合我的代码段。
IList<FileSpec> filesToFind = new List<FileSpec>();
FileSpec fileToFind = new FileSpec(new DepotPath("//depot/....cpp"), null, null, VersionSpec.Head);
filesToFind.Add(fileToFind);
IList<FileSpec> filesFound = pRep.GetDepotFiles(filesToFind, null);