<-- Previous || Up || Next -->

Make Directory Function
File Names Class

Public Function MakeDirectory( _
    ByVal vDirectory As Variant _
    ) As Variant

Create the named directory even if the other directories along the path do not currently exist.
Function returns True upon success and False if the directory cannot be created for any reason.

Example:
    ' Example will create directory C:\TEMP\LEVEL2\LEVEL3
    ' even if it has to create C:\TEMP and C:\TEMP\LEVEL2
    MakeDirectory("C:\TEMP\LEVEL2\LEVEL3") = True
See also:
    UniquePathNamesVariantVector Function
vDirectory: Name of the directory that is to be created. Function returns Null if vDirectory is Null or cannot be fixed-up to a string.
Note: If this function fails, it is usually because either 1) the drive is invalid, or 2) there is already a file whose name conflicts with some part of the path name vDirectory. For example, the above example would return False if there were no drive "C" or if there were already a file named "C:\TEMP", "C:\TEMP\LEVEL2", or "C:\TEMP\LEVEL2\LEVEL3".

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.