What is the problem you are having with rclone?
My Dropbox folder structure is like this: Main/Sub1/Sub.2/Sub3/Sub4/Sub5/files.file
For some reason if I go deeper than Sub.2 folder it will throw out an error: directory not found. More commands example below
I have an identical folder structure in Google Drive and I have no issue with it. Only have issue with Dropbox
What is your rclone version (output from rclone version)
rclone v1.57.0
- os/version: Microsoft Windows Server 2016 Standard 1607 (64 bit)
- os/kernel: 10.0.14393.1884 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.17.2
- go/linking: dynamic
- go/tags: cmount
Which cloud storage system are you using? (eg Google Drive)
Dropbox for Business
The command you were trying to run (eg rclone copy /tmp remote:tmp)
cmd 1#: rclone copy -Pv gdrive:Main/Sub dropbox:Main/Sub
cmd 2#: rclone copy -Pv gdrive:Main/Sub/Sub.2/Sub3/Sub4/Sub5 dropbox:Main/Sub/Sub.2/Sub3/Sub4/Sub5
cmd 3#: rclone lsd dropbox:Main/Sub
cmd 4#: rclone lsd dropbox:Main/Sub/Sub.2
cmd 5#: rclone lsd dropbox:Main/Sub -R
The rclone config contents with secrets removed.
--------------------
[dropbox]
type = dropbox
shared_folders = true
token = Some_Token
client_id = Some_ID
client_secret = Some_secret
--------------------
A log from the command with the -vv flag
cmd 1# output:
2021-11-24 10:49:54 INFO : Sub.2/Sub3/Sub4/Sub5/file1.file: Copied (new)
2021-11-24 10:49:54 INFO : Sub.2/Sub3/Sub4/Sub5/file2.file: Copied (new)
2021-11-24 10:49:54 INFO : Sub.2/Sub3/Sub4/Sub5/file3.file: Copied (new)
[Omitted the rest, basically copy is successful]
cmd 2# output:
2021/11/24 11:40:38 Failed to create file system for "dropbox:Main/Sub/Sub.2/Sub3/Sub4/Sub5": directory not found
cmd 3# output:
-1 2021-11-24 11:43:50 -1 Sub.2
cmd 4# output:
2021/11/24 11:45:04 Failed to create file system for "dropbox:Main/Sub/Sub.2": directory not found
cmd 5# output:
-1 2021-11-24 11:46:00 -1 Sub.2
-1 2021-11-24 11:46:00 -1 Sub.2/Sub3
-1 2021-11-24 11:46:00 -1 Sub.2/Sub3/Sub4
-1 2021-11-24 11:46:00 -1 Sub.2/Sub3/Sub4_1
-1 2021-11-24 11:46:01 -1 Sub.2/Sub3/Sub4_1/Sub5
-1 2021-11-24 11:46:01 -1 Sub.2/Sub3/Sub4_1/Sub5_1
-1 2021-11-24 11:46:01 -1 Sub.2/Sub3/Sub4_1/Sub5_2
[Omitted the rest, list is too long]