Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/04/2005, 10:59
Scho
 
Fecha de Ingreso: marzo-2004
Ubicación: Valencia
Mensajes: 367
Antigüedad: 20 años, 11 meses
Puntos: 1
Prueba algo así

Código:
Imports System.IO
....
....
If Not Directory.Exists("c:\2005") Then
       Directory.CreateDirectory("c:\2005")
       If Not Directory.Exists("c:\2005\01") Then
              Directory.CreateDirectory("c:\2005\01")
       End If
End If
Saludos