4 out of 5 rated this helpful - Rate this topic

Directory Class

Exposes static methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)]
public static class Directory

The Directory type exposes the following members.

  NameDescription
Public methodStatic memberSupported by the XNA FrameworkCreateDirectory(String)Creates all directories and subdirectories in the specified path.
Public methodStatic memberCreateDirectory(String, DirectorySecurity)Creates all the directories in the specified path, applying the specified Windows security.
Public methodStatic memberSupported by the XNA FrameworkDelete(String)Deletes an empty directory from a specified path.
Public methodStatic memberSupported by the XNA FrameworkDelete(String, Boolean)Deletes the specified directory and, if indicated, any subdirectories and files in the directory.
Public methodStatic memberEnumerateDirectories(String)Returns an enumerable collection of directory names in a specified path.
Public methodStatic memberEnumerateDirectories(String, String)Returns an enumerable collection of directory names that match a search pattern in a specified path.
Public methodStatic memberEnumerateDirectories(String, String, SearchOption)Returns an enumerable collection of directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Public methodStatic memberEnumerateFiles(String)Returns an enumerable collection of file names in a specified path.
Public methodStatic memberEnumerateFiles(String, String)Returns an enumerable collection of file names that match a search pattern in a specified path.
Public methodStatic memberEnumerateFiles(String, String, SearchOption)Returns an enumerable collection of file names that match a search pattern in a specified path, and optionally searches subdirectories.
Public methodStatic memberEnumerateFileSystemEntries(String)Returns an enumerable collection of file-system entries in a specified path.
Public methodStatic memberEnumerateFileSystemEntries(String, String)Returns an enumerable collection of file-system entries that match a search pattern in a specified path.
Public methodStatic memberEnumerateFileSystemEntries(String, String, SearchOption)Returns an enumerable collection of file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Public methodStatic memberSupported by the XNA FrameworkExistsDetermines whether the given path refers to an existing directory on disk.
Public methodStatic memberGetAccessControl(String)Gets a DirectorySecurity object that encapsulates the access control list (ACL) entries for a specified directory.
Public methodStatic memberGetAccessControl(String, AccessControlSections)Gets a DirectorySecurity object that encapsulates the specified type of access control list (ACL) entries for a specified directory.
Public methodStatic memberSupported by the XNA FrameworkGetCreationTimeGets the creation date and time of a directory.
Public methodStatic memberGetCreationTimeUtcGets the creation date and time, in Coordinated Universal Time (UTC) format, of a directory.
Public methodStatic memberSupported by the XNA FrameworkGetCurrentDirectoryGets the current working directory of the application.
Public methodStatic memberSupported by the XNA FrameworkGetDirectories(String)Gets the names of subdirectories (including their paths) in the specified directory.
Public methodStatic memberSupported by the XNA FrameworkGetDirectories(String, String)Gets the names of subdirectories (including their paths) that match the specified search pattern in the current directory.
Public methodStatic memberGetDirectories(String, String, SearchOption)Gets the names of the subdirectories (including their paths) that match the specified search pattern in the current directory, and optionally searches subdirectories.
Public methodStatic memberSupported by the XNA FrameworkGetDirectoryRootReturns the volume information, root information, or both for the specified path.
Public methodStatic memberSupported by the XNA FrameworkGetFiles(String)Returns the names of files (including their paths) in the specified directory.
Public methodStatic memberSupported by the XNA FrameworkGetFiles(String, String)Returns the names of files (including their paths) that match the specified search pattern in the specified directory.
Public methodStatic memberGetFiles(String, String, SearchOption)Returns the names of files (including their paths) that match the specified search pattern in the specified directory, using a value to determine whether to search subdirectories.
Public methodStatic memberSupported by the XNA FrameworkGetFileSystemEntries(String)Returns the names of all files and subdirectories in the specified directory.
Public methodStatic memberSupported by the XNA FrameworkGetFileSystemEntries(String, String)Returns an array of file system entries that match the specified search criteria.
Public methodStatic memberGetFileSystemEntries(String, String, SearchOption)Gets an array of all the file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Public methodStatic memberSupported by the XNA FrameworkGetLastAccessTimeReturns the date and time the specified file or directory was last accessed.
Public methodStatic memberGetLastAccessTimeUtcReturns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.
Public methodStatic memberSupported by the XNA FrameworkGetLastWriteTimeReturns the date and time the specified file or directory was last written to.
Public methodStatic memberGetLastWriteTimeUtcReturns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last written to.
Public methodStatic memberGetLogicalDrivesRetrieves the names of the logical drives on this computer in the form "<drive letter>:\".
Public methodStatic memberGetParentRetrieves the parent directory of the specified path, including both absolute and relative paths.
Public methodStatic memberSupported by the XNA FrameworkMoveMoves a file or a directory and its contents to a new location.
Public methodStatic memberSetAccessControlApplies access control list (ACL) entries described by a DirectorySecurity object to the specified directory.
Public methodStatic memberSetCreationTimeSets the creation date and time for the specified file or directory.
Public methodStatic memberSetCreationTimeUtcSets the creation date and time, in Coordinated Universal Time (UTC) format, for the specified file or directory.
Public methodStatic memberSupported by the XNA FrameworkSetCurrentDirectorySets the application's current working directory to the specified directory.
Public methodStatic memberSetLastAccessTimeSets the date and time the specified file or directory was last accessed.
Public methodStatic memberSetLastAccessTimeUtcSets the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.
Public methodStatic memberSetLastWriteTimeSets the date and time a directory was last written to.
Public methodStatic memberSetLastWriteTimeUtcSets the date and time, in Coordinated Universal Time (UTC) format, that a directory was last written to.
Top

Use the Directory class for typical operations such as copying, moving, renaming, creating, and deleting directories. You can also use the Directory class to get and set DateTime information related to the creation, access, and writing of a directory.

Because all Directory methods are static, it might be more efficient to use a Directory method rather than a corresponding DirectoryInfo instance method if you want to perform only one action. Most Directory methods require the path to the directory that you are manipulating.

The static methods of the Directory class perform security checks on all methods. If you are going to reuse an object several times, consider using the corresponding instance method of DirectoryInfo instead, because the security check will not always be necessary.

NoteNote

In members that accept a path as an input string, that path must be well-formed or an exception is raised; however, if a path is fully qualified but begins with a space, the space is not omitted but no exception is raised. Similarly, a path or a combination of paths cannot be fully qualified twice. For example, "c:\temp c:\windows" also raises an exception in most cases. Ensure that your paths are well-formed when using methods that accept a path string.

In members that accept a path, the path can refer to a file or just a directory. The specified path can also refer to a relative path or a Universal Naming Convention (UNC) path for a server and share name. For example, all the following are acceptable paths:

  • "c:\\MyDir" in C#, or "c:\MyDir" in Visual Basic.

  • "MyDir\\MySubdir" in C#, or "MyDir\MySubDir" in Visual Basic.

  • "\\\\MyServer\\MyShare" in C#, or "\\MyServer\MyShare" in Visual Basic.

By default, full read/write access to new directories is granted to all users. Demanding permission for a directory where the path string ends with the directory separator character results in demanding permissions for all the contained subdirectories (for example, "C:\Temp\"). If permissions are required only for a specific directory, the string should end with a period (for example, "C:\Temp\.").

For a list of common I/O tasks, see Common I/O Tasks.

The following example shows how to retrieve all the text files from a directory and move them to a new directory. After the files are moved, they no longer exist in the original directory.

using System;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            string sourceDirectory = @"C:\current";
            string archiveDirectory = @"C:\archive";

            try
            {
                var txtFiles = Directory.EnumerateFiles(sourceDirectory, "*.txt");

                foreach (string currentFile in txtFiles)
                {
                    string fileName = currentFile.Substring(sourceDirectory.Length + 1);
                    Directory.Move(currentFile, Path.Combine(archiveDirectory, fileName));
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }
    }
}

The following example demonstrates how to use the EnumerateFiles method to retrieve a collection of text files from a directory, and then use that collection in a query to find all the lines that contain "Example".

using System;
using System.IO;
using System.Linq;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            string archiveDirectory = @"C:\archive";

            var files = from retrievedFile in Directory.EnumerateFiles(archiveDirectory, "*.txt", SearchOption.AllDirectories)
                        from line in File.ReadLines(retrievedFile)
                        where line.Contains("Example")
                        select new
                        {
                            File = retrievedFile,
                            Line = line
                        };

            foreach (var f in files)
            {
                Console.WriteLine("{0} contains {1}", f.File, f.Line);
            }
            Console.WriteLine("{0} lines found.", files.Count().ToString());
        }
    }
}

The following example demonstrates how to move a directory and all its files to a new directory. The original directory no longer exists after it has been moved.

using System;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            string sourceDirectory = @"C:\source";
            string destinationDirectory = @"C:\destination";

            try
            {
                Directory.Move(sourceDirectory, destinationDirectory);  
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }
    }
}

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.