Jump to content
groovyPost Forums

wirelessly sync a folder created on pc with folder on andrioid SD card.


malukwes
Go to solution Solved by Steve Krause,

Recommended Posts

  • 4 weeks later...
  • Solution

@malukwes are you looking for an automated tool or a script like robocopy? Do you want to sync two directions or just 1 direction?

Here's an example of a two-way sync but you could also just make it a 1 way sync. Change your drive letters as needed and copy this into a file like sync.bat or something:

@echo off
set "sourceDrive=D:\path\to\source"
set "destDrive=E:\path\to\destination"

rem Sync from source to destination
robocopy "%sourceDrive%" "%destDrive%" /MIR /COPYALL /DCOPY:T /R:0 /W:0

rem Sync from destination to source
robocopy "%destDrive%" "%sourceDrive%" /MIR /COPYALL /DCOPY:T /R:0 /W:0

Do testing, using /mir you can blow things away easily...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Who's Online   0 Members, 0 Anonymous, 11 Guests (See full list)

    • There are no registered users currently online
×
×
  • Create New...