how do i move my data from my sd card to a new one on my Samsung Galaxy s 5?

Status
Not open for further replies.
Solution
Buy a carrier to house the micro SD from the 'phone so it will fit in an SD card slot in a laptop or PC. Temporarily place the contents in that computer then pop the new micro SD card into the carrier and paste the contents into it.

Buy a carrier to house the micro SD from the 'phone so it will fit in an SD card slot in a laptop or PC. Temporarily place the contents in that computer then pop the new micro SD card into the carrier and paste the contents into it.

 
Solution

ClintonMezsAnglin

Estimable
Apr 29, 2015
3
0
4,510
There is an issue with copying files from one micro card to another, and that is that there is at least one hidden file (.android_secure) that must be copied in order for the applications that are stored on your current card to work correctly after you move your files to your new card. I tried several different ways that I found on the Internet to do this without any success.

Then I found a similar thread on this site from a couple of years ago (now closed), called “Moving data to a new microsd card on Android smartphone”

In that thread Kris Baudemprez explained how to do it using the xcopy command in the Command Prompt window on your computer. I tried it, and it worked — with two big exceptions: It didn't cooy the needed hidden file(s) and it shortened all my file names to be just 8 characters long! Not good.

However, after a little more searching around on the Internet, I was able to fix both of these problems. Below is my adaptation of Kris’s instructions:

Unmount the storage card from you phone (Settings —> Storage —> Unmount SD card)

Turn off the phone, remove the back cover, and carefully take out your current microSD card.

Slide it into an SD-adapter and then slide the adapter into your PC

Using Windows Explorer find your card listed among the available drives and make a note of the drive letter assigned to it (in my case it was F, but depending on your setup, it could be G or some other letter).

Click on the Start button on your desktop.

In the search window, type: Command Prompt — and then press the Enter key to open the Command Prompt window.

Enter the following commands (pressing the Enter key at the end of each line):

cd /
md sd-card
cd sd-card
xcopy F:\ "*.*" /s /e /v /h

The first command above changes the current directory to your root drive.

The second command creates a new folder (directory) in your root drive named “sd-card”. (You can use any legal file name here, but you must remember to substitute that name in place of “sd-card” in the code below. If you use spaces in your new name, then you must put double-quote marks around the new name.)

The third command changes the current directory to “sd-card”.

The fourth line is the key line. Make sure you type exactly as shown. In this line, I have used the drive letter F, if your system assigned a different drive letter for your card, use that letter instead of the F. (Remember also, if you used a different name than “sd-card” for your folder, you must use the new name here (with quote marks if you have spaces in the name). The quotes marks around the wildcard characters (*.*) is what tells windows to preserve your long file names. (Not that Microsoft bothers to tells you that in any of their documentation that I found.) The letters at the end this line are called switches and tell the system how to copy you files: /s copies folders and subfolders except for empty ones; /e copies any subfolder, even if it is empty; /v verifies the copying; and /h copies hidden files.

It may take several minutes to copy the files from your current card into the sd-card folder (or whatever you have named it).

When the copying is complete the systen will tell you how many files you have copied.

Remove your micro card adapter from the computer and then carefully remove the micro card from the adapter.

Now insert your new micro card into the adapter and insert the adapter into your computer. The system will assign it a drive letter (almost always the same letter as before — but it could be different, so check to be sure).

In the Command Prompt window, type in the following, hitting the Enter key at the end of each line:

cd /
cd sd-card
xcopy "*.*" F:\ /s /e /v /h

As you are typing the above, make the necessary substitutions if you are using a different name for the folder, or your drive letter is different.

After the files have been copied onto you new card, remove the adapter from your computer, and then carefully remove you new card from the adapter.

Carefully insert your new card into your phone, replace the cover, and start your phone.

You will find all your apps, pictures, movies, text messages that were stored on your old card are now on your new card.
 
With a bit of luck, the OP has fixed his problem by now but your contribution is no less welcome. That said, in a Windows system which has hidden and system files open to view from the Tools>Folder Options>View menu, a simple copy and paste operation does the job.

The simple thing to check is that if you can't see any files of folders in the Android system with a full stop at the start of the name, you can't see the hidden files.
 

ClintonMezsAnglin

Estimable
Apr 29, 2015
3
0
4,510


 

ClintonMezsAnglin

Estimable
Apr 29, 2015
3
0
4,510
Saga Lout, you may be right for most people, but on my computer, I have the “show hidden files” option turned on, but Windowd still did not show the hidden files on my phone — nor did it copy them. When I tried the method you suggest, Windows copied around 2,400 files (I don't remember the exact number). Using xcopy, as described in my previous answer, Windows copied 5,450 files. Your milage may vary.
 
Status
Not open for further replies.