使用命令行 p4.exe,您可以获得未删除文件的列表,如下所示:
p4 files -e //depot/....cpp
该命令p4 files
支持几个不同的标志,例如“-a”和“-A”。这些由 p4api.net.dll 支持:
Options options = new FilesCmdOptions(FilesCmdFlags.AllRevisions, maxItems: 10);
IList<FileSpec> filesFound = rep.GetDepotFiles(filesToFind, options);
FilesCmdFlags.AllRevisions
对应于'-a'标志(并且FilesCmdFlags.IncludeArchives
是'-A')。不幸的是,p4api.net.dll 似乎不支持“-e”。
但是有一个使用 P4Command 的解决方法:
var cmd = new P4Command(rep, "files", true);
StringList args = new StringList(new[] { "-e", "//depot/....cpp" });
P4CommandResult result = cmd.Run(args);
IEnumerable<FileSpec> foundFiles =
result.TaggedOutput.Select(o =>
new FileSpec(new DepotPath(o["depotFile"]),
null,
null,
VersionSpec.None));
foreach (FileSpec file in foundFiles)
Console.WriteLine("Found {0}", file.DepotPath);
我正在使用 p4net.api.dll 版本 2013.3.78.1524。