Deleting Files : File Info « File Stream « C# / C Sharp






Deleting Files

  
/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;
using System.IO;

namespace Client.Chapter_11___File_and_Streams
{
  public class DeletingFiles {
    static void Main(string[] args)
    {
      FileInfo MyFile = new FileInfo(@"c:\Projects\Testing.txt");

      MyFile.Create();
      MyFile.Delete();
    }
  }
}

           
         
    
  








Related examples in the same category

1.Create FileStream from FileInfo
2.Create Stream from FileInfo from OpenText method
3.Get File Attributes from FileInfo
4.Get file Creation time from FileInfo
5.Get Last updated, accessed and write time
6.Create DriveInfo object from FullName of FileInfo
7.Get Directory information from FileInfo
8.Moving A Files
9.Copying A File
10.Creating Files
11.Open Existing File
12.Convert from a URL to a FileInfo
13.Get file name from path string
14.Get file type from path string
15.Get Path from path string