1 2 3 4 5
// using System.IO; FileInfo FI = new FileInfo("C:\\sample.txt"); FileStream FS = FI.Create(); FS.Close();