Delete File di C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Delete
{
class Program
{
static void Main(string[] args)
{
if (System.IO.File.Exists(@”D:\SIMULASI\A.txt”))
{
try
{
System.IO.File.Delete(@”D:\SIMULASI\A.txt”);
}
catch (System.IO.IOException e)
{
Console.WriteLine(e.Message);
return;
}
}
Console.WriteLine(“Press any key to exit.”);
Console.ReadKey();
}
}
}

Tidak ada komentar:

Posting Komentar

Profile Page Screen - Flutter UI

Profile Page Berikut ini adalah contoh  source code untuk Design Profile Page menggunakan flutter,  sebelumnya jangan lupa untuk membua...