P4API.NET等效的“p4文件”命令用于在软件仓库中查找文件

时间:2012-08-16 00:22:55

标签: .net perforce p4api.net

我正在使用Perforce .NET API P4API.NET库并想知道是否有一个“p4文件”命令行等效,我可以调用它来返回我//中的文件列表(例如* .cpp)仓库?提前谢谢!

2 个答案:

答案 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);