FileSystemInfo::FullName Property
.NET Framework (current version)
Gets the full path of the directory or file.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| PathTooLongException | The fully qualified path and file name is 260 or more characters. |
| SecurityException | The caller does not have the required permission. |
For example, for a file c:\NewFile.txt, this property returns "c:\NewFile.txt".
For a list of common I/O tasks, see Common I-O Tasks.
The following example demonstrates the FullName property. This code example is part of a larger example provided for the FileSystemInfo class.
static void DisplayFileSystemInfoAttributes(FileSystemInfo^ fsi) { // Assume that this entry is a file. String^ entryType = "File"; // Determine if entry is really a directory if ((fsi->Attributes & FileAttributes::Directory) == FileAttributes::Directory) { entryType = "Directory"; } // Show this entry's type, name, and creation date. Console::WriteLine("{0} entry {1} was created on {2:D}", entryType, fsi->FullName, fsi->CreationTime); }
FileIOPermission
for access to the path. Associated enumeration: System.Security.Permissions::FileIOPermissionAccess
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: