GetCanonicalFile() public method

public GetCanonicalFile ( ) : FilePath
return FilePath
Ejemplo n.º 1
0
			private static FilePath Canonical(FilePath path)
			{
				try
				{
					return path.GetCanonicalFile();
				}
				catch (IOException)
				{
					return path.GetAbsoluteFile();
				}
			}