Hola Amigos,
necesito una ayuda urgente de ustedes, estoy tratando de mover un archivo desde un directorio a otro de la siguiente manera:
try {
String filename ="SMS_E_"+pais.trim()+"_F"+ultimoNUM+".txt";
String ruta ="c:/tmp/SMS_";
String ruta1 ="c:/SMS_";
File src = new File(ruta, filename);
File tgt = new File(ruta1, src.getName());
if (src.exists()) {
System.out.println("SRC existe");
if (tgt.exists()) {
tgt.delete();
}
}
boolean renameTo = src.renameTo(tgt);
System.out.println("renameTo = %b%n" + renameTo);
} catch (Exception e) {
e.printStackTrace();
}
Pero no funciona... no se que puedo estar haciendo mal...
no aparece ningun error, solo que no copia el archivo...
Les agradezco su ayuda....
Nataly