+ Reply to Thread
Results 1 to 3 of 3

create a folder if it does't exist? [Excel VBA Programming]

Hybrid View

  1. #1
    Registered User
    Join Date
    04-19-2007
    Posts
    24

    create a folder if it does't exist? [Excel VBA Programming]

    Using Excel VBA I want to programetically create a folder "MyTest" at C:\Excel if it already doesn't exist?

    I will appreciate your help.

  2. #2
    Registered User
    Join Date
    03-22-2007
    Location
    Malaysia
    Posts
    21

    Create a folder

    Maybe this may help:
    
                Path = "C:\Excel\MyTest"
                If Dir(Path, vbDirectory) = vbNullString Then
                MkDir sPath
                End If
    Last edited by fron; 05-24-2007 at 03:45 AM.

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Use the MkDir Function

    MkDir "c:\Excel\Test"
    It might be better to test if the Directory exists

    If Len(Dir("c:\Excel\Test", vbDirectory)) = 0 Then
        MkDir "c:\Excel\Test"
    End If
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1