|
22 | 22 | help="Pass optional parameters as interpreted strings.") |
23 | 23 | @option("-t", "--transformation", help="The transformation to apply on all uploads.") |
24 | 24 | @option("-f", "--folder", default="", |
25 | | - help="The path where you want to upload the assets. " |
26 | | - "The path you specify will be pre-pended to the public IDs of the uploaded assets. " |
| 25 | + help="The full path where you want to upload the assets. " |
27 | 26 | "You can specify a whole path, for example path1/path2/path3. " |
28 | 27 | "Any folders that do not exist are automatically created.") |
29 | 28 | @option("-fm", "--folder-mode", type=Choice(['fixed', 'dynamic'], case_sensitive=False), |
30 | 29 | help="Specify folder mode explicitly. By default uses cloud mode configured in your cloud.", hidden=True) |
31 | 30 | @option("-p", "--preset", help="The upload preset to use.") |
32 | 31 | @option("-e", "--exclude-dir-name", is_flag=True, default=False, |
33 | 32 | help="When this option is used, the contents of the parent directory are uploaded but not the parent " |
34 | | - "directory itself. Thus, the name of the specified parent directory is not included " |
35 | | - "in the pubic ID path of the uploaded assets.") |
| 33 | + "directory itself.") |
36 | 34 | @option("-w", "--concurrent_workers", type=int, default=30, help="Specify the number of concurrent network threads.") |
37 | 35 | @option("-d", "--doc", is_flag=True, help="Open upload_dir command documentation page.") |
38 | 36 | def upload_dir(directory, glob_pattern, include_hidden, optional_parameter, optional_parameter_parsed, transformation, |
|
0 commit comments