Path.GetRandomFileName 方法

定義

傳回隨機資料夾名稱或檔案名稱。

public:
 static System::String ^ GetRandomFileName();
public static string GetRandomFileName ();
static member GetRandomFileName : unit -> string
Public Shared Function GetRandomFileName () As String

傳回

隨機資料夾名稱或檔案名稱。

範例

下列範例顯示 方法的 GetRandomFileName 輸出。

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string result = Path.GetRandomFileName();
            Console.WriteLine("Random file name is " + result);
        }
    }
}

/*

 This code produces output similar to the following:

 Random file name is w143kxnu.idj
 Press any key to continue . . .

 */
Imports System.IO

Module Module1

    Sub Main()
        Dim result = Path.GetRandomFileName()
        Console.WriteLine("Random file name is " + result)
    End Sub

End Module

' This code produces output similar to the following:

' Random file name is w143kxnu.idj
' Press any key to continue . . .

備註

不同于 GetTempFileNameGetRandomFileName 不會建立檔案。

適用於