Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: File name (including extension) from a given path

C# Sharp Basic: Exercise-64 with Solution

Write a C# Sharp program to get the file name (including extension) from a given path.

Sample Solution:

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            string file_path;
            file_path = "c:/csharp/ex/test.cpp";
            Console.WriteLine(test(file_path));                     
            file_path = "c:/movies/abc.mp4";
            Console.WriteLine(test(file_path));
            file_path = "test.txt";
            Console.WriteLine(test(file_path));            
        }
        public static string test(string file_path)
        {
            return file_path.Split('/').Last();
        }
    }
}

Sample Output:

test.cpp
abc.mp4
test.txt

Flowchart:

Flowchart: C# Sharp Exercises - File name (including extension) from a given path.

Sample Solution-1:

C# Sharp Code:

using System;
using System.IO;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            string file_path;
            file_path = "c:/csharp/ex/test.cpp";
            Console.WriteLine(test(file_path));                     
            file_path = "c:/movies/abc.mp4";
            Console.WriteLine(test(file_path));
            file_path = "test.txt";
            Console.WriteLine(test(file_path));            
        }
        public static string test(string file_path)
        {
            return Path.GetFileName(file_path);
        }
    }
}

Sample Output:

test.cpp
abc.mp4
test.txt

Flowchart:

Flowchart: C# Sharp Exercises - File name (including extension) from a given path.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to check if a given number present in an array of numbers.
Next: Write a C# Sharp program to multiply all of elements of a given array of numbers by the array length.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.