C# program to get the file name in C#


Set the path name in a string −

string myPath = "D:\
ew\quiz.txt";

Now, use the GetFileName() method to get the name of the file −

Path.GetFileName(myPath)

The following is the complete code −

Example

 Live Demo

using System;
using System.IO;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         string myPath = "D:\
ew\quiz.txt";          // get extension          Console.WriteLine("Extension: "+Path.GetExtension(myPath));          // get path          Console.WriteLine("File Path: "+Path.GetFileName(myPath));       }    } }

Output

Extension: .txt
File Path: D:
ew\quiz.txt

Updated on: 22-Jun-2020

515 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements