create-dirs.d 765 B

123456789101112131415161718
  1. c: Copyright (C) 1998 - 2022, 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. ---
  10. When used in conjunction with the --output option, curl will create the
  11. necessary local directory hierarchy as needed. This option creates the
  12. directories mentioned with the --output option, nothing else. If the --output
  13. file name uses no directory, or if the directories it mentions already exist,
  14. no directories will be created.
  15. Created dirs are made with mode 0750 on unix style file systems.
  16. To create remote directories when using FTP or SFTP, try --ftp-create-dirs.