GetCanonicalFile() public method

public GetCanonicalFile ( ) : FilePath
return FilePath
コード例 #1
0
ファイル: RepositoryCache.cs プロジェクト: LunarLanding/ngit
			private static FilePath Canonical(FilePath path)
			{
				try
				{
					return path.GetCanonicalFile();
				}
				catch (IOException)
				{
					return path.GetAbsoluteFile();
				}
			}