
13/04/2005, 10:59
|
| | Fecha de Ingreso: marzo-2004 Ubicación: Valencia
Mensajes: 367
Antigüedad: 21 años 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 |