Скопируйте файлы из папки на SD-карте в другую папку на SD-карте. - PullRequest
20 голосов
/ 19 апреля 2011

Можно ли программно скопировать папку, присутствующую в SDCard, в другую папку, в которой присутствует та же SDCAR?

Если да, то как это сделать?

Ответы [ 4 ]

41 голосов
/ 21 июня 2012

Улучшенная версия этого примера:

// 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();
    }
}

Получена улучшенная обработка ошибок и улучшена обработка, если переданный целевой файл находится в каталоге, который не существует.

15 голосов
/ 19 апреля 2011

См. Пример здесь .SDCard является внешним хранилищем, поэтому вы можете получить к нему доступ через getExternalStorageDirectory.

4 голосов
/ 07 февраля 2013

да, это возможно, и я использую метод ниже в моем коде.Надеюсь использовать полное вам: -

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();
    }

}
0 голосов
/ 20 мая 2013

Для перемещения файлов или каталогов, вы можете использовать File.renameTo(String path) function

File oldFile = new File (oldFilePath);
oldFile.renameTo(newFilePath);
...