create-dirs.d 766 B

12345678910111213141516171819
  1. c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: create-dirs
  4. Help: Create necessary local directory hierarchy
  5. Category: curl
  6. Example: --create-dirs --output local/dir/file $URL
  7. Added: 7.10.3
  8. See-also: ftp-create-dirs output-dir
  9. Multi: boolean
  10. ---
  11. When used in conjunction with the --output option, curl creates the necessary
  12. local directory hierarchy as needed. This option creates the directories
  13. mentioned with the --output option, nothing else. If the --output file name
  14. uses no directory, or if the directories it mentions already exist, no
  15. directories are created.
  16. Created directories are made with mode 0750 on unix style file systems.
  17. To create remote directories when using FTP or SFTP, try --ftp-create-dirs.