Send sd files to another sd

Qtroz1

Commendable
Jan 25, 2017
1
0
1,510
I have an Lg g5(32gb) and a 64gb external memory. And now i have a 200gb memory which i want to send the files to.
The problem is that am afraid that the files wont be arranged as the same dates that were before if i transfered it with my pc.
Is there any solution to send the files (or clone) to the 200gb while being with same arrangment?
 
Solution
do you have a set of computer running any of these os ;Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows Server 2012, Windows 8?
are you comfortable using command line to copy?

if so, there's a tool that can do exactly that called Robocopy embedded to those os.
call up command prompt and type this command:

robocopy "E:\source" F:\destination /MIR /DCOPY:T

some explanation:
"e:\source" - this is the location of file(s) you want to copy
f:\destination - this is the target location to copy your file(s) into
/MIR - is the command to mirror the directory tree of source
/DCOPY:T - is the command to also copy the Time stamps

more info on Robocopy here

Ok Go

Estimable
May 23, 2015
18
0
4,590
do you have a set of computer running any of these os ;Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows Server 2012, Windows 8?
are you comfortable using command line to copy?

if so, there's a tool that can do exactly that called Robocopy embedded to those os.
call up command prompt and type this command:

robocopy "E:\source" F:\destination /MIR /DCOPY:T

some explanation:
"e:\source" - this is the location of file(s) you want to copy
f:\destination - this is the target location to copy your file(s) into
/MIR - is the command to mirror the directory tree of source
/DCOPY:T - is the command to also copy the Time stamps

more info on Robocopy here
 
Solution