3

我有一个程序填充组合框,其中包含 perforce 库中选定目录中包含的文件的详细信息。

相关的代码是这样的:

PerforcePath dir = _ctlProductSelect.SelectedItem as PerforcePath;

_ctlServicePackSelect.Items.Clear();

if (dir != null)
{
    foreach (P4.File file in _perforce.GetFiles(null, P4.FileSpec.DepotSpec(dir.Path + "/*.sp")))
    {
       _ctlServicePackSelect.Items.Add(new PerforcePath(file.DepotPath.Path));
    }
}

问题是这还包括标记为已删除的文件。有什么方法可以从GetFiles方法返回的列表中过滤已删除的文件?我在 P4_dotNet API 文档中找不到任何可能的嫌疑人。

4

3 回答 3

1

使用 P4API.NET,您可以将-e选项添加到GetFiles


IList filesToFind = new List();
FileSpec fileToFind = new FileSpec(new DepotPath("//depot/..."), null, null, VersionSpec.Head);
filesToFind.Add(fileToFind);
Options o = new Options();
o.Add("-e", "");
IList filesFound = pRep.GetFiles(filesToFind, o);
于 2012-06-12T14:49:35.163 回答
0

我最终得到的工作是在 foreach 循环中执行此操作:

foreach (P4.File file in _perforce.GetFiles(null, P4.FileSpec.DepotSpec(dir.Path + "/*.sp")))
{
    if (_perforce.GetFileMetaData(null, file)[0].HeadAction.ToString() != "MoveDelete")
    _ctlServicePackSelect.Items.Add(new PerforcePath(file.DepotPath.Path));
}

基本上在将每个文件添加到组合框之前检查它的元数据。

于 2012-06-14T14:32:27.227 回答
0
IList<FileSpec> filesToFind = new List<FileSpec>();
FileSpec fileToFind = new FileSpec(FileSpec.DepotSpec("//depot/...").DepotPath, Revision.Head);
filesToFind.Add(fileToFind);
Options o = new Options();

o.Add("-m", "changelistid");
IList<File> FilesFound = rep.GetFiles(filesToFind, o)
于 2013-03-15T08:03:18.853 回答