This should be an easy question for you guys...

At the beginning of my program, I want to see if a folder exists, and if it does, I want to delete it. Dir() does not seem to be working. It is still drawing a "" when I know the folder exists. This is my code:

If Dir(App.Path & "\temp") <> "" Then RmDir (App.Path & "\temp")

How do I get this to work?