GetCanonicalFile() 공개 메소드

public GetCanonicalFile ( ) : FilePath
리턴 FilePath
예제 #1
0
			private static FilePath Canonical(FilePath path)
			{
				try
				{
					return path.GetCanonicalFile();
				}
				catch (IOException)
				{
					return path.GetAbsoluteFile();
				}
			}