System.IO.Path.Path.GetFullPath C# (CSharp) Méthode

GetFullPath() public static méthode

public static GetFullPath ( string path ) : string
path string
Résultat string
		public static string GetFullPath (string path)
		{
			string fullpath = InsecureGetFullPath (path);
#if !NET_2_1
			if (SecurityManager.SecurityEnabled) {
				new FileIOPermission (FileIOPermissionAccess.PathDiscovery, fullpath).Demand ();
			}
#endif
			return fullpath;
		}