Como mover, copiar e excluir arquivos e diretórios no SD de forma programática?


91

Desejo mover, copiar e excluir arquivos e diretórios de forma programática no cartão SD. Eu fiz uma pesquisa no Google, mas não consegui encontrar nada útil.

Respostas:


26

Use E / S Java padrão . Use Environment.getExternalStorageDirectory()para chegar à raiz do armazenamento externo (que, em alguns dispositivos, é um cartão SD).


Eles copiam o conteúdo dos arquivos, mas não copiam realmente o arquivo - ou seja, metadados do sistema de arquivamento não copiados ... Quero uma maneira de fazer isso (como o shell cp) para fazer um backup antes de sobrescrever um arquivo. É possível?
Sanjay Manohar

9
Na verdade, a parte mais relevante do Java I / O padrão, java.nio.file, infelizmente não está disponível no Android (API de nível 21).
corwin.amber

1
@CommonsWare: Podemos acessar arquivos privados do SD de forma pragmática? ou deletar algum arquivo privado?
Saad Bilal

@SaadBilal: Um cartão SD é geralmente um armazenamento removível e você não tem acesso arbitrário aos arquivos no armazenamento removível por meio do sistema de arquivos.
CommonsWare

3
com o lançamento do armazenamento com escopo do Android 10 tornou-se a nova norma e todos os métodos de fazer operações com arquivos também mudaram, as formas de fazer java.io não funcionarão mais, a menos que você adicione "RequestLagacyStorage" com o valor "true" em seu manifesto o método Environment.getExternalStorageDirectory () também está obsoleto
Mofor Emmanuel

158

definir as permissões corretas no manifesto

     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

abaixo está uma função que irá mover programaticamente o seu arquivo

private void moveFile(String inputPath, String inputFile, String outputPath) {

    InputStream in = null;
    OutputStream out = null;
    try {

        //create output directory if it doesn't exist
        File dir = new File (outputPath); 
        if (!dir.exists())
        {
            dir.mkdirs();
        }


        in = new FileInputStream(inputPath + inputFile);        
        out = new FileOutputStream(outputPath + inputFile);

        byte[] buffer = new byte[1024];
        int read;
        while ((read = in.read(buffer)) != -1) {
            out.write(buffer, 0, read);
        }
        in.close();
        in = null;

            // write the output file
            out.flush();
        out.close();
        out = null;

        // delete the original file
        new File(inputPath + inputFile).delete();  


    } 

         catch (FileNotFoundException fnfe1) {
        Log.e("tag", fnfe1.getMessage());
    }
          catch (Exception e) {
        Log.e("tag", e.getMessage());
    }

}

Para excluir o arquivo, use

private void deleteFile(String inputPath, String inputFile) {
    try {
        // delete the original file
        new File(inputPath + inputFile).delete();  
    }
    catch (Exception e) {
        Log.e("tag", e.getMessage());
    }
}

Copiar

private void copyFile(String inputPath, String inputFile, String outputPath) {

    InputStream in = null;
    OutputStream out = null;
    try {

        //create output directory if it doesn't exist
        File dir = new File (outputPath); 
        if (!dir.exists())
        {
            dir.mkdirs();
        }


        in = new FileInputStream(inputPath + inputFile);        
        out = new FileOutputStream(outputPath + inputFile);

        byte[] buffer = new byte[1024];
        int read;
        while ((read = in.read(buffer)) != -1) {
            out.write(buffer, 0, read);
        }
        in.close();
        in = null;

            // write the output file (You have now copied the file)
            out.flush();
        out.close();
        out = null;        

    }  catch (FileNotFoundException fnfe1) {
        Log.e("tag", fnfe1.getMessage());
    }
            catch (Exception e) {
        Log.e("tag", e.getMessage());
    }

}

9
Não se esqueça de definir as permissões no manifesto <uses-permission android: name = "android.permission.WRITE_EXTERNAL_STORAGE" />
Daniel Leahy

5
Além disso, não se esqueça de adicionar uma barra no final de inputPath e outputPath, Ex: / sdcard / NOT / sdcard
CONvid19

tentei mover, mas não consigo. Este é o meu código moveFile (file.getAbsolutePath (), myfile, Environment.getExternalStorageDirectory () + "/ CopyEcoTab /");
Meghna

3
Além disso, não se esqueça de executá-los em um thread de segundo plano via AsyncTask ou um Handler, etc.
w3bshark

1
@DanielLeahy Como ter certeza de que o arquivo foi copiado com sucesso e depois excluir apenas o arquivo original?
Rahulrr2602

141

Mover arquivo:

File from = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/kaic1/imagem.jpg");
File to = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/kaic2/imagem.jpg");
from.renameTo(to);

31
Um alerta; "Ambos os caminhos estão no mesmo ponto de montagem. No Android, os aplicativos têm maior probabilidade de atingir essa restrição ao tentar copiar entre o armazenamento interno e um cartão SD."
zyamys

renameTofalha sem qualquer explicação
sasha199568

Estranhamente, isso cria um diretório com o nome desejado, em vez de um arquivo. Alguma ideia sobre isso? O arquivo 'de' é legível e ambos estão no cartão SD.
xarlymg89

37

Função para mover arquivos:

private void moveFile(File file, File dir) throws IOException {
    File newFile = new File(dir, file.getName());
    FileChannel outputChannel = null;
    FileChannel inputChannel = null;
    try {
        outputChannel = new FileOutputStream(newFile).getChannel();
        inputChannel = new FileInputStream(file).getChannel();
        inputChannel.transferTo(0, inputChannel.size(), outputChannel);
        inputChannel.close();
        file.delete();
    } finally {
        if (inputChannel != null) inputChannel.close();
        if (outputChannel != null) outputChannel.close();
    }

}

Que modificações são necessárias para COPIAR o arquivo?
BlueMango

3
@BlueMango Remover linha 10file.delete()
Peter Tran

Este código não funcionará para arquivos grandes como arquivos de 1 gb ou 2 gb.
Vishal Sojitra

@Vishal Por que não?
LarsH,

Eu acho que @Vishal significa que copiar e excluir um arquivo grande requer muito mais espaço em disco e tempo do que mover esse arquivo.
LarsH

19

Excluir

public static void deleteRecursive(File fileOrDirectory) {

 if (fileOrDirectory.isDirectory())
    for (File child : fileOrDirectory.listFiles())
        deleteRecursive(child);

    fileOrDirectory.delete();

    }

verifique este link para a função acima.

cópia de

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

}

Mover

mover não é nada apenas copiar a pasta de um local para outro e depois apagar a pasta que é isso

manifesto

     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

11
  1. Permissões:

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  2. Obtenha a pasta raiz do cartão SD:

    Environment.getExternalStorageDirectory()
  3. Excluir arquivo: este é um exemplo de como excluir todas as pastas vazias em uma pasta raiz:

    public static void deleteEmptyFolder(File rootFolder){
        if (!rootFolder.isDirectory()) return;
    
        File[] childFiles = rootFolder.listFiles();
        if (childFiles==null) return;
        if (childFiles.length == 0){
            rootFolder.delete();
        } else {
            for (File childFile : childFiles){
                deleteEmptyFolder(childFile);
            }
        }
    }
  4. Copiar arquivo:

    public static void copyFile(File src, File dst) throws IOException {
        FileInputStream var2 = new FileInputStream(src);
        FileOutputStream var3 = new FileOutputStream(dst);
        byte[] var4 = new byte[1024];
    
        int var5;
        while((var5 = var2.read(var4)) > 0) {
            var3.write(var4, 0, var5);
        }
    
        var2.close();
        var3.close();
    }
  5. Mover arquivo = copiar + excluir arquivo de origem


6
File from = new File(Environment.getExternalStorageDirectory().getAbsolutePath().getAbsolutePath()+"/kaic1/imagem.jpg");
File to = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/kaic2/imagem.jpg");
from.renameTo(to);

6
File.renameTo funciona apenas no mesmo volume do sistema de arquivos. Além disso, você deve verificar o resultado de renameTo.
MyDogTom

5

Copie o arquivo usando o Okio do Square :

BufferedSink bufferedSink = Okio.buffer(Okio.sink(destinationFile));
bufferedSink.writeAll(Okio.source(sourceFile));
bufferedSink.close();

3
/**
     * Copy the local DB file of an application to the root of external storage directory
     * @param context the Context of application
     * @param dbName The name of the DB
     */
    private void copyDbToExternalStorage(Context context , String dbName){

        try {
            File name = context.getDatabasePath(dbName);
            File sdcardFile = new File(Environment.getExternalStorageDirectory() , "test.db");//The name of output file
            sdcardFile.createNewFile();
            InputStream inputStream = null;
            OutputStream outputStream = null;
            inputStream = new FileInputStream(name);
            outputStream = new FileOutputStream(sdcardFile);
            byte[] buffer = new byte[1024];
            int read;
            while ((read = inputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, read);
            }
            inputStream.close();
            outputStream.flush();
            outputStream.close();
        }
        catch (Exception e) {
            Log.e("Exception" , e.toString());
        }
    }


1

Xamarin Android

public static bool MoveFile(string CurrentFilePath, string NewFilePath)
{
    try
    {
        using (var f = new File(CurrentFilePath))
        using (var i = new FileInputStream(f))
        using (var o = new FileOutputStream(NewFilePath))
        {
            i.Channel.TransferTo(0, i.Channel.Size(), o.Channel);
            f.Delete();
        }

        return true;
    }
    catch { return false; }
}

public static bool CopyFile(string CurrentFilePath, string NewFilePath)
{
    try
    {
        using (var i = new FileInputStream(CurrentFilePath))
        using (var o = new FileOutputStream(NewFilePath))
            i.Channel.TransferTo(0, i.Channel.Size(), o.Channel);

        return true;
    }
    catch { return false; }
}

public static bool DeleteFile(string FilePath)
{
    try
    {
        using (var file = new File(FilePath))
            file.Delete();

        return true;
    }
    catch { return false; }
}

1

Para mover um arquivo, esta API pode ser usada, mas você precisa de pelo menos 26 como nível de API -

mover arquivo

Mas se você quiser mover o diretório, nenhum suporte existe, então este código nativo pode ser usado

    import org.apache.commons.io.FileUtils;

    import java.io.IOException;
    import java.io.File;

    public class FileModule {

    public void moveDirectory(String src, String des) {
    File srcDir = new File(src);
    File destDir = new File(des);
     try {
        FileUtils.moveDirectory(srcDir,destDir);
    } catch (Exception e) {
      Log.e("Exception" , e.toString());
      }
    }

    public void deleteDirectory(String dir) {
      File delDir = new File(dir);
      try {
        FileUtils.deleteDirectory(delDir);
       } catch (IOException e) {
      Log.e("Exception" , e.toString());
      }
     }
    }

1

Movendo arquivo usando kotlin. O aplicativo deve ter permissão para gravar um arquivo no diretório de destino.

@Throws(FileNotFoundException::class, IOError::class)
private fun moveTo(source: File, dest: File, destDirectory: File? = null) {

    if (destDirectory?.exists() == false) {
        destDirectory.mkdir()
    }

    val fis = FileInputStream(source)
    val bufferLength = 1024
    val buffer = ByteArray(bufferLength)
    val fos = FileOutputStream(dest)
    val bos = BufferedOutputStream(fos, bufferLength)
    var read = fis.read(buffer, 0, read)
    while (read != -1) {
        bos.write(buffer, 0, read)
        read = fis.read(buffer) // if read value is -1, it escapes loop.
    }
    fis.close()
    bos.flush()
    bos.close()

    if (!source.delete()) {
        HLog.w(TAG, klass, "failed to delete ${source.name}")
    }
}

0

Mover arquivo ou pasta:

public static void moveFile(File srcFileOrDirectory, File desFileOrDirectory) throws IOException {
    File newFile = new File(desFileOrDirectory, srcFileOrDirectory.getName());
    try (FileChannel outputChannel = new FileOutputStream(newFile).getChannel(); FileChannel inputChannel = new FileInputStream(srcFileOrDirectory).getChannel()) {
        inputChannel.transferTo(0, inputChannel.size(), outputChannel);
        inputChannel.close();
        deleteRecursive(srcFileOrDirectory);
    }
}

private static void deleteRecursive(File fileOrDirectory) {
    if (fileOrDirectory.isDirectory())
        for (File child : Objects.requireNonNull(fileOrDirectory.listFiles()))
            deleteRecursive(child);
    fileOrDirectory.delete();
}
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.