0

I want my flashdrive to automatically sync and upload all its data to my cloud storage when plugged into my computer (with internet). Is this possible? If so, what existing software can I use?

krikara
  • 397

1 Answers1

0

(Assuming Windows) I satisfied similar requirements by using PowerShell in combination with a scheduled task.

  1. Identify the WMI event that best relates to a USB drive being connected.
  2. Create a scheduled task that will run a PowerShell script file when the event is fired.
  3. In your script verify the device is actually attached and recover the path.
  4. Identify the files to upload.
  5. Upload the file using the respective services API.

It would be possible to provide more information if your question stated your operating system, which cloud service you intend to use, any rules used to select files, and how to handle conflicts - but given the nature of the question I have assumed you are only after a general approach to solve the problem. The following resources may help with specifics.

Élie
  • 274