
07/02/2005, 16:15
|
 | | | Fecha de Ingreso: diciembre-2004 Ubicación: Cusco - Perú
Mensajes: 2.248
Antigüedad: 20 años, 2 meses Puntos: 7 | |
Ese error te manda porque no le pasas la ruta correcta:
VB
System.IO.File.Move("c:\Dir1\archivo.txt", "c:\Dir1\archivo.txt.fecha")
C#
System.IO.File.Move(@"c:\Dir1\archivo.txt", @"c:\Dir1\archivo.txt.fecha"); |