System.Curl.curl_ftpcreatedir
Delphi
curl_ftpcreatedir = (
CURLFTP_CREATE_DIR_NONE, { do NOT create missing dirs! }
CURLFTP_CREATE_DIR, { (FTP/SFTP) if CWD fails, try MKD and then CWD
again if MKD succeeded, for SFTP this does
similar magic }
CURLFTP_CREATE_DIR_RETRY, { (FTP only) if CWD fails, try MKD and then CWD
again even if MKD failed! }
CURLFTP_CREATE_DIR_LAST { not an option, never use }
);
C++
enum DECLSPEC_DENUM curl_ftpcreatedir : unsigned int { CURLFTP_CREATE_DIR_NONE, CURLFTP_CREATE_DIR, CURLFTP_CREATE_DIR_RETRY, CURLFTP_CREATE_DIR_LAST };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Curl.pas System.Curl.hpp |
System.Curl | System.Curl |
Description
Embarcadero Technologies does not currently have any additional information.