You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# the local filestore path where new or modified files are uploaded
93
+
uploader.filestore.local: /home/qcr/Bagfiles
94
+
# the target folder on the google drive
94
95
uploader.filestore.remote: /Bagfiles
95
96
```
96
97
The `uploader.filestore.local` specifies the local directory where new files are to be detected and uploaded. Note that the uploader is only interested in _new_ files. However, touching the files can force the uploader to consider them as new files.
97
98
98
99
The `uploader.filestore.remote` specifies the target folder to receive the uploaded file on Google Drive.
99
100
101
+
```yaml
102
+
# exclude files with suffixes and prefixes
103
+
uploader.ignore.suffix:
104
+
- .active
105
+
uploader.ignore.prefix:
106
+
- '~'
107
+
```
108
+
The two yaml keys, `uploader.ignore.suffix` and `uploader.ignore.prefix`, specify a list of suffixes and prefixes of filenames that will be ignored. To define more than one suffix or prefix, add more lines under the key as a list.
0 commit comments