FtpCreateDirectory Creates a new directory on the FTP server.
VB4-32,5,6
Declare Function FtpCreateDirectory Lib "wininet.dll" Alias "FtpCreateDirectoryA" (ByVal hFtpSession As Long, ByVal lpszDirectory As String) As Boolean |
Operating Systems Supported |
Requires Windows NT 4.0 or later; Requires Windows 95 or later |
- hConnect
[in] Valid HINTERNET handle returned by a previous call to InternetConnect using INTERNET_SERVICE_FTP.
- lpszDirectory
[in] Address of a null-terminated string that contains the name of the directory to create on the remote system. This can be either a fully qualified path or a name relative to the current directory. |
Returns TRUE if successful, or FALSE otherwise. To get a specific error code, call GetLastError. If the error code indicates that the FTP server denied the request to create a directory, use InternetGetLastResponseInfo to determine why. |
|