DEV Community

Cover image for Day 10 of 30-Day .NET Challenge: File Paths
Sukhpinder Singh
Sukhpinder Singh

Posted on • Updated on • Originally published at singhsukhpinder.Medium

Day 10 of 30-Day .NET Challenge: File Paths

Introduction

The article demonstrates the built-in functions while working with file system paths. It makes it easier to handle file paths.

Learning Objectives

  • Learn about constants and functions in the System.IO namespace

Prerequisites for Developers

  • How to use Visual Studio or Visual Studio Code

  • Handling variables, employing string interpolation, and displaying output.

Getting Started

How to determine the current directory?

The System.IO contains a method to expose the full path of the current directory. To begin, create a static class file called “FilePath.cs” within the console application. Insert the provided code snippet into this file.

    public static class FilePath
    {
        /// <summary>
        /// Outputs
        /// D:\Workspace\30DayChallenge.Net\30DayChallenge.Net\bin\Debug\net8.0
        /// </summary>
        public static void DisplayCurrentDirectory()
        {
            Console.WriteLine(Directory.GetCurrentDirectory());
        }
    }
Enter fullscreen mode Exit fullscreen mode

Execute the code from the main method as follows

    #region Day 10 - File Path

    FilePath.DisplayCurrentDirectory();

    #endregion
Enter fullscreen mode Exit fullscreen mode

Console Output

D:\Workspace\30DayChallenge.Net\30DayChallenge.Net\bin\Debug\net8.0
Enter fullscreen mode Exit fullscreen mode

How to work with special directories?

The code below provides the path to the Windows My Documents folder equivalent or the user’s HOME directory, regardless of the operating system, including Linux. To do that add another method into the same static class as shown below

    /// <summary>
    /// Outputs
    /// C:\Users\admin\Documents
    /// </summary>
    public static void DisplaySpecialDirectory()
    {
        Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments));
    }
Enter fullscreen mode Exit fullscreen mode

Execute the code from the main method as follows

    #region Day 10 - File Path

    FilePath.DisplaySpecialDirectory();

   #endregion
Enter fullscreen mode Exit fullscreen mode

Console Output

    C:\Users\admin\Documents
Enter fullscreen mode Exit fullscreen mode

How to get OS path characters?

Various operating systems utilize distinct characters for separating directory levels. The framework automatically interprets the separator character relevant to the operating system being used.

To do that add another method into the same static class as shown below

    /// <summary>
    /// Outputs
    /// For windows: \sample        
    /// </summary>
    public static void DisplayOSPathCharacters()
    {
        Console.WriteLine($"For windows: {Path.DirectorySeparatorChar}sample");
    }
Enter fullscreen mode Exit fullscreen mode

Execute the code from the main method as follows

    #region Day 10 - File Path

    FilePath.DisplayOSPathCharacters();

    #endregion
Enter fullscreen mode Exit fullscreen mode

Console Output

    For windows: \sample 
Enter fullscreen mode Exit fullscreen mode

How to get filename extensions?

The Path class also exposes a method to get an extension of any filename passed as a parameter. To do that add another method into the same static class as shown below

    /// <summary>
    /// Outputs
    /// .json
    /// </summary>
    public static void DisplayFileExtension()
    {
        Console.WriteLine(Path.GetExtension("sample.json"));
    }
Enter fullscreen mode Exit fullscreen mode

Execute the code from the main method as follows

    #region Day 10 - File Path

    FilePath.DisplayFileExtension();

    #endregion
Enter fullscreen mode Exit fullscreen mode

Console Output

    .json
Enter fullscreen mode Exit fullscreen mode

Complete Code on GitHub

GitHub — ssukhpinder/30DayChallenge.Net

C# Programming🚀

Thank you for being a part of the C# community! Before you leave:

If you’ve made it this far, please show your appreciation with a clap and follow the author! 👏️️

Follow us: X | LinkedIn | Dev.to | Hashnode | Newsletter | Tumblr

Visit our other platforms: GitHub | Instagram | Tiktok | Quora | Daily.dev

More content at C# Programming

Top comments (0)