android - telefono - mover archivos a sd
Copie los archivos de una carpeta de la tarjeta SD a otra carpeta de la tarjeta SD (4)
Vea el ejemplo aquí . La tarjeta sd es un almacenamiento externo, por lo que puede acceder a él a través de getExternalStorageDirectory
.
¿Es posible copiar una carpeta presente en sdcard a otra carpeta presente la misma tarjeta SD programáticamente?
Si es así, ¿cómo hacer eso?
Una versión mejorada de ese ejemplo:
// If targetLocation does not exist, it will be created.
public void copyDirectory(File sourceLocation , File targetLocation)
throws IOException {
if (sourceLocation.isDirectory()) {
if (!targetLocation.exists() && !targetLocation.mkdirs()) {
throw new IOException("Cannot create dir " + targetLocation.getAbsolutePath());
}
String[] children = sourceLocation.list();
for (int i=0; i<children.length; i++) {
copyDirectory(new File(sourceLocation, children[i]),
new File(targetLocation, children[i]));
}
} else {
// make sure the directory we plan to store the recording in exists
File directory = targetLocation.getParentFile();
if (directory != null && !directory.exists() && !directory.mkdirs()) {
throw new IOException("Cannot create dir " + directory.getAbsolutePath());
}
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
Obtuve un mejor manejo de errores y manejos mejores si el archivo objetivo pasado se encuentra en un directorio que no existe.
sí, es posible y estoy utilizando el método a continuación en mi código. Espero que uses completo para ti: -
public static void copyDirectoryOneLocationToAnotherLocation(File sourceLocation, File targetLocation)
throws IOException {
if (sourceLocation.isDirectory()) {
if (!targetLocation.exists()) {
targetLocation.mkdir();
}
String[] children = sourceLocation.list();
for (int i = 0; i < sourceLocation.listFiles().length; i++) {
copyDirectoryOneLocationToAnotherLocation(new File(sourceLocation, children[i]),
new File(targetLocation, children[i]));
}
} else {
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
Para mover archivos o directorios, puede usar la función File.renameTo(String path)
File oldFile = new File (oldFilePath);
oldFile.renameTo(newFilePath);