Chia sẻ

In this article csharpcanban.com will guide you How to Delete a File in C#, with examples and Demo code, you can download for use.

The Delete method deletes the specified file permanently. The following code snippet deletes a file:

string fileName = @"C:FileToDelete.txt";
FileInfo filetodelete = new FileInfo(fileName);
try
{
    filetodelete.Delete();
}
catch (IOException ex)
{
      Console.WriteLine(ex.Message);
}

ĐĂNG KÝ MUA HÀNG

    Email (*)

    Điện thoại (*)

    Tên sản phẩm/Dịch vụ:


    Chia sẻ
    Xem thêm  [C#] How to use FileInfo.CreateText Method

    Trả lời

    Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *