Q:

C# program to demonstrate the use of CreateSubdirectory method

0

DirectoryInfo.CreateSubdirectory()

This is a method of "DirectoryInfo" class, it is used to create a sub directory within a directory.

Syntax:

DirectoryInfo DirectoryInfo.CreateSubdirectory(string path);

Parameter(s):

  1. path - Sub-Directory name.

Return value:

Returns the object of DirectoryInfo class.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            DirectoryInfo d = new DirectoryInfo("mydir");

            d.CreateSubdirectory("sub-dir");

            Console.WriteLine("Sub-Directory created successfully");
            
        }
    }
}

Output

Sub-Directory created successfully.

In this program we create an object of DirectoryInfo class and initialize with a directory-name, then create sub-directory inside given directory.

Note: In above program, we need to remember, when we use "DirectoryInfo" class, System.IO namespace must be included in the program.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# file handling (File class) solved programs/examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to demonstrate the use of Exists proper... >>
<< C# program to get the list of files from given dir...