Skip to main content

ChDrive statement

Table of contents
  1. Syntax
  2. Example

Changes the current drive.

Syntax

ChDrive drive

The required drive argument is a string expression that specifies an existing drive. If you supply a zero-length string (""), the current drive doesn't change. If the drive argument is a multiple-character string, ChDrive uses only the first letter.

On the Macintosh, ChDrive changes the current folder to the root folder of the specified drive.

Example

This example uses the ChDrive statement to change the current drive. On the Macintosh, "HD:" is the default drive name, and ChDrive would change the current folder to the root folder of the specified drive. The following example assumes the machine actually has a drive named D.

ChDrive "D" ' Make "D" the current drive.

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>