Quantcast
Channel: CoderzHeaven » ASP.NET
Viewing all articles
Browse latest Browse all 10

How to Check if File Exists in C Sharp/C# ?

$
0
0

Hi,

Use the following simple lines of code to check whether a particular file exists or not using C#/C Sharp.

using System;
using System.IO;

static class MainClass
{
    static void Main(string[] args)
    {
           Console.WriteLine(File.Exists("c:yourFile.txt"));
    }
}

It will return either True or False depending on whether your file exists or not.
:)


Viewing all articles
Browse latest Browse all 10

Trending Articles