1

これらの 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

0

2番目の方法が正しい

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 に答える