Home > Articles > Programming > Windows Programming

📄 Contents

  1. Working with Files
  2. Working with Drives and Directories
Like this article? We recommend

Like this article? We recommend

Working with Drives and Directories

On a Windows computer, persistent storage—in other words, disk drives—is organized into directories (also called folders). Each drive has a single root directory. The root directory may have one or more subdirectories. Those subdirectories may in turn have their own subdirectories, and so on. Network sharing introduces additional complexity. You can refer to shared network drives and directories by using their share name (for example, \\MainServer\MyFolder) or a mapped drive letter. Following are some of the tasks related to drives and directories that you may need to perform in your .NET programs:

  • Determining what drives exist
  • Determining whether a specific directory exists
  • Creating, moving, and deleting directories
  • Setting the current directory

The .NET Framework provides two classes for performing these tasks. The Directory class exposes static (shared) methods for working with directories, whereas the DirectoryInfo class provides instance methods. (This is the same as the distinction between the FileInfo and File classes.) Both classes are part of the System.IO namespace.

Because the file system treats a directory as a special kind of file, many class members that are available in the File and FileInfo classes are also present in the Directory and DirectoryInfo classes. Specifically, FileInfo members that are also present in DirectoryInfo are as follows:

  • CreationTime
  • Delete
  • LastAccessTime
  • LastWriteTime
  • MoveTo

The DirectoryInfo class constructor takes as its one argument a string that specifies the target directory. Here’s the syntax:

New(path)

where path is a string giving the path of the directory. An exception will be thrown if the directory doesn’t exist, if the path string isn’t properly formed, if the user doesn’t have the required permission, or if the path is longer than 256 characters. Here’s an example of creating an instance of this class:

Dim d As New DirectoryInfo("c:\documents")

The Directory and File classes also have some members in common:

  • Delete
  • GetCreationTime
  • GetLastAccessTime
  • GetLastWriteTime
  • Move

Table 2 shows some additional members of the Directory class; Table 3 describes additional members of the DirectoryInfo class.

Table 2 Additional members of the Directory class.

Class Member

Description

CreateDirectory(path)

Creates the specified directory and, if necessary, the path to it. Returns a type DirectoryInfo for the new directory.

GetCurrentDirectory()

Returns a type String containing the path of the current working directory.

GetDirectories(path)

Returns, in an array of type String, the names of all subdirectories in the directory specified by path.

GetDirectoryRoot(path)

Returns the volume and root information for the specified directory (for example, "c:\").

GetFiles(path)

Returns, in an array of type String, the names of all files in the specified directory.

GetFileSystemEntries(path)

Returns, in an array of type String, the names of all files and subdirectories in the specified directory.

GetLogicalDrives()

Returns, in an array of type String, all the logical drives on the system, in the form "<drive letter>:\".

GetParent(path)

Returns a type DirectoryInfo referencing the parent of the specified directory).

SetCurrentDirectory(path)

Sets the application’s working directory to the specified directory.

Table 3 Additional members of the DirectoryInfo class.

Class Member

Description

Parent

Returns a type DirectoryInfo referring to the parent directory of the instance directory.

Root

Returns a type DirectoryInfo referring to the root directory.

CreateSubdirectory(path)

Creates the subdirectory specified by path and returns a type DirectoryInfo referring to the new directory.

GetDirectories()

Returns an array of type DirectoryInfo containing references to all of the subdirectories in the instance directory.

GetFiles()

Returns an array of type FileInfo containing references to all of the files in the instance directory.

Notice that the Directory class has methods for getting and setting the current working directory. What exactly is this?

Any running application has a working directory, which is where the application’s file operations (such as opening a file) will occur by default—that is, if no path is specified for the operation. The working directory is also the location from which relative path specifications are determined. During program development in Visual Studio, the working directory is by default the bin directory within the project directory. After deployment, it’s the directory where the application’s .exe file is located. It’s rarely a good idea to rely on the default working directory, however, so your code should either change the working directory or always specify the complete path for file operations.

Let’s wrap up this article with some examples of using the Directory and DirectoryInfo classes.

The following code uses the Directory class to display, in the immediate window, a list of all subdirectories in the c:\documents directory:

Dim sa() As String
Dim s As String
sa = Directory.GetDirectories("c:\documents")
For Each s In sa
  Debug.WriteLine(s)
Next

This code performs the same task, but uses the DirectoryInfo class:

Dim d As New DirectoryInfo("c:\documents")
Dim da() As DirectoryInfo
Dim x As DirectoryInfo
da = d.GetDirectories
For Each x In da
 Debug.WriteLine(x.FullName)
Next

The next example checks to see whether a specified directory exists. If so, a message to that effect is displayed. If not, the directory is created.

Const DIR_PATH = "c:\my_new_documents"
If Directory.Exists(DIR_PATH) Then
 MsgBox(DIR_PATH & " already exists.")
Else
 Directory.CreateDirectory(DIR_PATH)
 MsgBox(DIR_PATH & " created successfully.")
End If

For a final demonstration, I’ll show you how to determine the total number of files in a directory and all of its subdirectories, along with their total size (see Listing 1). The program makes use of a powerful technique called recursion, whereby a function calls itself repeatedly to carry out a repetitive task. Here’s how it works. The function, called FilesInDirectory(), is passed a type DirectoryInfo referencing the directory of interest. Code in the function obtains a list of all files in that directory and gets the count and total size of these files, adding them to a summary (maintained in a structure that’s defined in the code). Then the code gets a list of all subdirectories that the current directory contains, and calls itself for each one. As a result the code "worms" its way down through all levels of subdirectories, and gets the file information for each one. Recursion is not used all that often, but in appropriate situations it’s a very powerful programming technique.

Listing 1 Using recursion to list files and their sizes.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

 Dim result As FileSummary
 Dim msg As String

 result = FilesInDirectory(New DirectoryInfo("c:\documents"))

 msg = "The directory and its subdirectories contain "
 msg &= result.Count.ToString & " files totaling "
 msg &= result.TotalSize.ToString & " bytes."
 MsgBox(msg)

End Sub

Private Function FilesInDirectory(ByVal d As DirectoryInfo) As FileSummary

 ’ Returns the total number and total size of files in d
 ’ and all of its subdirectories.
 Dim fs1 As New FileSummary()
 Dim fs2 As New FileSummary()
 Dim fa() As FileInfo
 Dim f As FileInfo

 ’ Get the files in this directory.
 fa = d.GetFiles
 ’ Add their info to the summary.
 For Each f In fa
  fs1.Count += 1
  fs1.TotalSize += f.Length
 Next

 ’ Now do the same for all the subdirectories.
 Dim da() As DirectoryInfo
 Dim d1 As DirectoryInfo
 da = d.GetDirectories
 For Each d1 In da
  fs2 = FilesInDirectory(d1)
  fs1.Count += fs2.Count
  fs1.TotalSize += fs2.TotalSize
 Next

 ’ Return the current totals.
 Return fs1

End Function

Structure FileSummary
 Public TotalSize As Long
 Public Count As Integer
End Structure

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020