Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,996 questions

51,941 answers

573 users

How to delete a file in C#

3 Answers

0 votes
using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string file = @"d:\data.txt";

            File.Delete(file);
            Console.WriteLine("File: {0} Deleted.", file);
        }
    }
}

/*
run:
   
File: d:\data.txt Deleted.

*/


answered Mar 16, 2015 by avibootz
0 votes
using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string file = @"d:\somefile.txt";

            try
            {
                if (File.Exists(file))
                {
                    File.Delete(file);
                    Console.WriteLine("File: {0} Deleted.", file);
                }
                else
                    Console.WriteLine("File: {0} does not exist.", file);    
                
            }
            catch (IOException ioex)
            {
                Console.WriteLine(ioex.Message);
            }
        }
    }
}

/*
run:
   
File: d:\somefile.txt does not exist.

*/


answered Mar 17, 2015 by avibootz
0 votes
using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                if (File.Exists("d:\\data.bin"))
                {
                    File.Delete("d:\\data.bin");
                    Console.WriteLine("File deleted");
                }
            }
            catch (IOException iex)
            {
                Console.WriteLine(iex.Message);
            }
        }
    }
}


/*
run:

File deleted

*/

 



answered Aug 14, 2015 by avibootz

Related questions

1 answer 82 views
82 views asked Jul 27, 2023 by avibootz
1 answer 128 views
128 views asked Sep 5, 2014 by avibootz
1 answer 98 views
98 views asked Jan 27, 2024 by avibootz
1 answer 96 views
1 answer 140 views
1 answer 131 views
...