Path.GetRandomFileName() : Path « System.IO « C# / C Sharp by API






Path.GetRandomFileName()

  


using System;
using System.IO;

class MainClass
{
    public static void Main() 
    {

        Console.WriteLine( Path.GetRandomFileName() );
    }
}

   
    
  








Related examples in the same category

1.Path.GetFullPath(String fileName)
2.Path.GetTempFileName()