Path.GetFullPath Method
Returns the absolute path for the specified path string.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
Syntax
public static string GetFullPath (
stringpath
)
Parameters
- path
The file or directory for which to obtain absolute path information.
Return Value
A string containing the fully qualified location of path, such as "C:\MyFile.txt"
.
Remarks
The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0 "
.
The absolute path includes all information required to locate a file or directory on a system.
The file or directory specified by path is not required to exist. For example, if c:\temp\newdir
is the current directory, calling GetFullPath on a file name such as test.txt
returns c:\temp\newdir\test.txt
. The file need not exist.
However, if path does exist, the caller must have permission to obtain path information for path. Note that unlike most members of the Path class, this method accesses the file system.
This method uses current directory and current volume information to fully qualify path. If you specify a file name only in path, GetFullPath returns the fully qualified path of the current directory.
If you pass in a short file name, it is expanded to a long file name.
If a path contains no significant characters it is invalid unless it contains one or more "." characters followed by any number of spaces, then it will be parsed as either "." or "..".
Version Information
Available in the .NET Micro Framework versions 3.0, 4.0, and 4.1.