演示使用 FullName 属性的 C# 程序
DirectoryInfo 类提供了不同类型的方法和属性,用于对目录和子目录执行操作,如创建、移动等, FullName属性就是其中之一。该属性用于查找目录或指定文件的完整路径。
句法:
public virtual string FullName { get; }
返回:它将返回一个包含当前目录或文件的完整路径的字符串。
异常:此属性将引发以下异常:
- PathTooLongException:当路径和文件名超过系统定义的最大长度时会发生此异常。
- SecurityException:当调用者没有足够的权限时会发生此异常。
例子:
C#
// C# program to demonstrate the use of
// FullName property
using System;
using System.IO;
class GFG{
static void Main()
{
// Creating a object which contain the
// name of the directory
DirectoryInfo full_name = new DirectoryInfo("vignan");
Console.WriteLine("FullName");
// Finding the full path of the directory
// Using FullName property
Console.WriteLine(full_name.FullName);
}
}
输出:
FullName
/home/cg/root/8057718/vignan