up vote 0 down vote favorite
share [g+] share [fb]

I wrote myself a little downloading application so that I could easily grab a set of files from my server and put them all onto a new pc with a clean install of windows, without actually going on the net. Unfortunately I'm having problems creating the folder I want to put them in and am unsure how to go about it.

I want my program to download the apps to program files\any name here\

So basically I need a function that checks if a folder exists, and if it doesn't it creates it.

link|improve this question
1  
Please note that you may run in to permissions issues writing to \Program Files\, particularly under Vista. You should consider a different location. – Jeff Paulsen Sep 17 '08 at 18:17
feedback

11 Answers

up vote 11 down vote accepted
If(Not System.IO.Directory.Exists(YourPath)) Then
    System.IO.Directory.CreateDirectory(YourPath)
link|improve this answer
4  
Don't bother checking to see if it exists, it just wastes time. CreateDirectory won't throw an exception. Also, someone could create the directory between the time you checked and the time you created it, making the check even more pointless. – Jonathan Allen Oct 4 '08 at 5:45
feedback

Under System.IO, there is a class called Directory. Do the following:

If Not Directory.Exists(path) Then
    Directory.CreateDirectory(path)
End If

It will ensure that the directory is there.

link|improve this answer
1  
So will Directory.CreateDirectory(path). The pre-check isn't needed. – Jonathan Allen Oct 4 '08 at 5:46
feedback

Try the System.IO.DirectoryInfo class.

The sample from MSDN:

Imports System
Imports System.IO

Public Class Test
    Public Shared Sub Main()
        ' Specify the directories you want to manipulate.
        Dim di As DirectoryInfo = New DirectoryInfo("c:\MyDir")
        Try
            ' Determine whether the directory exists.
            If di.Exists Then
                ' Indicate that it already exists.
                Console.WriteLine("That path exists already.")
                Return
            End If

            ' Try to create the directory.
            di.Create()
            Console.WriteLine("The directory was created successfully.")

            ' Delete the directory.
            di.Delete()
            Console.WriteLine("The directory was deleted successfully.")

        Catch e As Exception
            Console.WriteLine("The process failed: {0}", e.ToString())
        End Try
    End Sub
End Class
link|improve this answer
feedback

Directory.CreateDirectory() should do it. http://msdn.microsoft.com/en-us/library/system.io.directory.createdirectory(VS.71).aspx

Also, in Vista, you probably cannot write into C: directly unless you run it as an admin, so you might just want to bypass that and create the dir you want in a sub-dir of C: (which i'd say is a good practice to be followed anyways. -- its unbelievable how many people just dump crap onto C:

Hope that helps.

link|improve this answer
feedback

(imports System.IO)

if Not Directory.Exists(Path) then
  Directory.CreateDirectory(Path)
end if
link|improve this answer
You don't need to check if it exists first, CreateDirectory will do that for you. – Jonathan Allen Oct 4 '08 at 5:47
feedback

Try this: Directory.Exists(TheFolderName) and Directory.CreateDirectory(TheFolderName)

(You may need: Imports System.IO)

link|improve this answer
feedback

Since the question didn't specify .NET, this should work in VBScript or VB6.

Dim objFSO, strFolder
strFolder = "C:\Temp"
Set objFSO = CreateObject("Scripting.FileSystemObject")
If Not objFSO.FolderExists(strFolder) Then
   objFSO.CreateFolder(strFolder)
End If
link|improve this answer
feedback

VB.NET? System.IO.Directory.Exists(string path)

link|improve this answer
feedback

You should try using the File System Object or FSO. There are many methods belonging to this object that check if folders exist as well as creating new folders.

link|improve this answer
feedback

I see how this would work, what would be the process to create a dialog box that allows the user name the folder and place it where you want to.

Cheers

link|improve this answer
feedback

if Not Directory.Exists(somePath) then

Directory.CreateDirectory(somePath)

end if

link|improve this answer
feedback

Your Answer

 
or
required, but never shown