SD上のファイルとディレクトリをプログラムで移動、コピー、削除するにはどうすればよいですか?


91

SDカード上のファイルやディレクトリをプログラムで移動、コピー、削除したいのですが。Google検索を実行しましたが、有用なものを見つけることができませんでした。

回答:


26

標準のJava I / Oを使用しますEnvironment.getExternalStorageDirectory()外部ストレージ(一部のデバイスではSDカード)のルートに到達するために使用します。


これらはファイルの内容をコピーしますが、実際にはファイルをコピーしません。つまり、ファイリングシステムのメタデータはコピーされません... cpファイルを上書きする前にバックアップを作成する方法(シェルなど)が必要です。出来ますか?
Sanjay Manohar 2011

9
実際、標準Java I / Oの最も重要な部分であるjava.nio.fileは、残念ながらAndroid(APIレベル21)では利用できません。
corwin.amber 14

1
@CommonsWare:SDからプライベートファイルに実用的にアクセスできますか?またはプライベートファイルを削除しますか?
Saad Bilal

@SaadBilal:SDカードは通常リムーバブルストレージであり、ファイルシステムを介してリムーバブルストレージ上のファイルに任意にアクセスすることはできません。
CommonsWare 2017

3
android 10のリリースにより、スコープ付きストレージが新しい基準になり、ファイルで操作を実行するすべてのメソッドも変更されました。マニフェストに「true」の値を持つ「RequestLagacyStorage」を追加しない限り、java.ioの実行方法は機能しなくなります。メソッドEnvironment.getExternalStorageDirectory()も廃止されました
Mofor Emmanuel

158

マニフェストに正しい権限を設定する

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

以下はプログラムでファイルを移動する関数です

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

}

ファイルを削除するには

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

コピーする

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
マニフェスト<uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE" />で権限を設定することを忘れないでください
Daniel Leahy

5
また、inputPathとoutputPathの最後にスラッシュを追加することを忘れないでください。例:/ sdcard / NOT / sdcard
CONvid19

私は移動しようとしましたが、できません。これは私のコードですmoveFile(file.getAbsolutePath()、myfile、Environment.getExternalStorageDirectory()+ "/ CopyEcoTab /");
メグナ2014年

3
また、などAsyncTaskまたはハンドラを介してバックグラウンドスレッドでこれらを実行することを忘れないでください
w3bshark

1
@DanielLeahyファイルが正常にコピーされたことを確認してから、元のファイルのみを削除する方法は?
Rahulrr2602

142

ファイルを移動:

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

31
ヘッドアップ。「両方のパスが同じマウントポイント上にあります。Androidでは、内部ストレージとSDカード間でコピーしようとすると、アプリケーションがこの制限に達する可能性が高くなります。」
zyamys 2015年

renameTo説明なしで失敗する
sasha199568

奇妙なことに、これはファイルの代わりに、希望する名前のディレクトリを作成します。それについて何かアイデアはありますか?ファイル「から」は読み取り可能で、どちらもSDカードにあります。
xarlymg89 2018年

37

ファイルを移動する機能:

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

}

ファイルをコピーするために必要な変更は何ですか?
BlueMango 2016年

3
@BlueMango行10を削除file.delete()
Peter Tran

このコードは、1 GBや2 GBなどの大きなファイルでは機能しません。
Vishal Sojitra

@Vishalどうして?
LarsH

@Vishalは、大きなファイルをコピーして削除するには、そのファイルを移動するよりも多くのディスク容量と時間を必要とすることを意味します。
LarsH

19

削除する

public static void deleteRecursive(File fileOrDirectory) {

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

    fileOrDirectory.delete();

    }

これをチェック上記の機能については、リンクを。

コピーする

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

}

動く

この動きは、ただものではありません別のフォルダつの場所をコピーし、その後、フォルダを削除しますこと厥

マニフェスト

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

11
  1. 権限:

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  2. SDカードのルートフォルダーを取得します。

    Environment.getExternalStorageDirectory()
  3. ファイルの削除:これは、ルートフォルダー内のすべての空のフォルダーを削除する方法の例です。

    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. ファイルをコピー:

    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. ファイルの移動=ソースファイルのコピー+削除


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は、同じファイルシステムボリュームでのみ機能します。また、renameToの結果を確認する必要があります。
MyDogTom 2015

5

SquareのOkioを使用してファイルをコピーします。

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

ファイルを移動するには、このAPIを使用できますが、APIレベルとして少なくとも26が必要です-

ファイルを移動する

しかし、ディレクトリを移動したい場合、サポートはありませんので、このネイティブコードを使用できます

    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

kotlinを使用したファイルの移動。アプリには、宛先ディレクトリにファイルを書き込む権限が必要です。

@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

ファイルまたはフォルダを移動:

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();
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.