System files missing after copying an SD card in OS X

0

I copied all my files from a 4 GB to a 16 GB SD card via OS X Finder, and lost quite a bit of system files that my Android can't find. Is there a trick to get everything to transfer?

user207775

Posted 2013-03-16T11:38:56.453

Reputation: 1

Answers

0

By default, Finder does not display files beginning with a ., for example a .config directory or some such. To copy all the files, open Terminal.app, and enter cp -R /Volumes/4gig/android/ /Volumes/8gig/new, replacing the file paths with those you actually want to copy. The -R stands for recursive, copying the source directory and all subdirectories.

MattDMo

Posted 2013-03-16T11:38:56.453

Reputation: 4 968