特定の日付まで最新にする必要があるプロジェクトがあります。私はこのコードを持っています:
var serverFolder = pathInTfs;
var localFolder = pathInLocalMachin;
var workingFolder = new WorkingFolder(serverFolder, localFolder);
// Create a workspace mapping
workspace.CreateMapping(workingFolder);
if (!workspace.HasReadPermission)
{
throw new SecurityException(
String.Format("{0} does not have read permission for {1}",
versionControl.AuthorizedUser, serverFolder));
}
// Get the files from the repository
workspace.Get(dateForLatest, GetOptions.Overwrite);
すべてが良いですが、「pathInLocalMachin」のディレクトリ「pathInTfs」のみを最新のものにしたいのですが、プログラムがworkspace.Get()を実行すると、すべてのプロジェクトが最新になります。プロジェクトで最新の 1 つのパスを取得する方法。