2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2016-11-16 06:44:58 +08:00
|
|
|
Long: create-dirs
|
|
|
|
Help: Create necessary local directory hierarchy
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: curl
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --create-dirs --output local/dir/file $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 7.10.3
|
2021-11-15 22:58:20 +08:00
|
|
|
See-also: ftp-create-dirs output-dir
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: boolean
|
2016-11-16 06:44:58 +08:00
|
|
|
---
|
|
|
|
When used in conjunction with the --output option, curl will create the
|
2021-07-16 14:47:34 +08:00
|
|
|
necessary local directory hierarchy as needed. This option creates the
|
|
|
|
directories mentioned with the --output option, nothing else. If the --output
|
|
|
|
file name uses no directory, or if the directories it mentions already exist,
|
|
|
|
no directories will be created.
|
2016-11-16 06:44:58 +08:00
|
|
|
|
2023-08-01 20:11:50 +08:00
|
|
|
Created directories are made with mode 0750 on unix style file systems.
|
2020-02-13 05:30:45 +08:00
|
|
|
|
2016-11-16 06:44:58 +08:00
|
|
|
To create remote directories when using FTP or SFTP, try --ftp-create-dirs.
|