Skip to content Skip to sidebar Skip to footer

Fastest Way To Move A Directory In Android?

What is the fastest way to move a directory in Android? In most, but not all cases, the source and destination are located on the same sdcard file system. Current, my code goes th

Solution 1:

As long as Files are on the same filesystem you can actually move them File#renameTo(File).

if (!fileFrom.renameTo(fileTo)) {
    copy(fileFrom, fileTo);
    // delete(fileFrom);
}

Post a Comment for "Fastest Way To Move A Directory In Android?"