fovus storage upload¶
fovus storage upload¶
Upload a file or folder to “My Files” in Fovus Storage.
LOCAL_PATH is the path to a local file or folder that will be uploaded to Fovus Storage.
FOVUS_PATH is the relative path within “My Files” in Fovus Storage where the targeted file(s) will be uploaded. This argument is optional.
fovus storage upload [OPTIONS] LOCAL_PATH [FOVUS_PATH]
Options
- --include-paths <include_paths>¶
The relative paths to files or folders inside the LOCAL_PATH that will be uploaded. Paths are provided with support for Unix shell-style wildcards.
You can only provide either –include-paths or –exclude-paths, not both.
Supported wildcards: * - matches any number of characters ? - matches any single character
E.g. taskName/out?/*.txt matches any .txt file in folders taskName/out1, taskName/out2, etc.
E.g. taskName???/folder/file.txt matches taskName001/folder/file.txt, taskName123/folder/file.txt, etc.
To specify multiple paths, this option may be provided multiple times or deliminated by a comma (
,
). To escape a comma, use two commas (,,
).E.g. –include-paths “path1” –include-paths “path2”
E.g. –include-paths “path1,path2”
- --exclude-paths <exclude_paths>¶
The relative paths to files or folders inside the LOCAL_PATH that will be uploaded. Paths are provided with support for Unix shell-style wildcards.
You can only provide either –include-paths or –exclude-paths, not both.
Supported wildcards: * - matches any number of characters ? - matches any single character
E.g. out?/*.txt matches any .txt file in folders out1, out2, etc.
E.g. folder???/file.txt matches folder001/file.txt, folder123/file.txt, etc.
To specify multiple paths, this option may be provided multiple times or deliminated by a comma (
,
). To escape a comma, use two commas (,,
).E.g. –exclude-paths “path1” –exclude-paths “path2”
E.g. –exclude-paths “path1,path2”
Arguments
- LOCAL_PATH¶
Required argument
- FOVUS_PATH¶
Optional argument