2

Rather than navigate through the folder structure I'd find it easier to just use the drive URL that I could copy from - for example Firefoy. Like this:

rclone copy https://drive.google.com/drive/u/1/folders/some_id_from_gdrive .

Is it possible? or is it possible via some part of the URL?

simone
  • 261
  • 1
  • 2
  • 7
  • Your question is confusing. You talk about folder structure which says to me local computer and give an example of a web site. – David Mar 02 '22 at 08:55
  • @David - In rclone the typical command uses some sort of hierarchical file structure also on the remote,. However on google drive that is a mapping to a URI that contains an ID. My question is: can I skip the folder navigation and point straight to the ID? I hope it clarifies – simone Mar 02 '22 at 12:53

1 Answers1

0
rclone copy --drive-root-folder-id some_id_from_gdrive source: /path/to/your/local/folder -Pv

"source:" is your Google Drive remote name.

living being
  • 111
  • 3