FileSystemInfo.FullName 屬性

定義

取得目錄或檔案的完整路徑。

public virtual string FullName { get; }

屬性值

含有完整路徑的字串。

例外狀況

完整路徑和檔案名稱都超出系統定義的長度上限。

呼叫端沒有必要的權限。

範例

下列範例示範 FullName 屬性。 此程式代碼範例是針對 類別提供的較大範例的 FileSystemInfo 一部分。

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);
}

備註

例如,對於檔案 c:\NewFile.txt,此屬性會傳回 「c:\NewFile.txt」。。

如需一般 I/O 工作的清單,請參閱 一般 I/O 工作

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

另請參閱