1

我必须使用 changeid 提取 Filespecs 这些 FileSpecs 与我尝试使用此代码的此更改列表中更改的文件相关

string change = value;
Options optionfilespec = new Options();
optionfilespec.Add(id.ToString(),"");
P4Command commadfilespec = new P4Command(ps, "where", true, change);
P4CommandResult res= commadfilespec.Run(optionfilespec);

或者我可以用这个吗

int id = int.Parse(change);
Changelist changelist= rep.GetChange(id);
IList <Perforce.P4.FileMetaData> files= changelist.Files;
foreach (FileMetaData fmd in files)
{ 
            //get the depot path and create instances from filespec            

}
4

2 回答 2

1

后一种方法是您想要的。我不确定您的代码片段是否 100% 正确,但方法是正确的。

于 2013-04-01T02:23:54.963 回答
0

第二种方法是正确的

int id = int.Parse(change);
Changelist changelist= rep.GetChangelist(id);
IList <Perforce.P4.FileMetaData> files= changelist.Files;
foreach (FileMetaData fmd in files)
    { 
                //get the depot path and create instances from filespec            

    }
于 2013-04-17T08:28:56.407 回答