|   
 
 
 | 
						
							
								| FtpSetCurrentDirectory Changes to a different working directory on the FTP server. | VB4-32,5,6 Declare Function FtpSetCurrentDirectory Lib "wininet.dll" Alias "FtpSetCurrentDirectoryA" (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 to an FTP session.
 
 · lpszDirectory
 [in] Address of a null-terminated string that contains the name of the directory to change to 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 the specific error code, call GetLastError. If the error code indicates that the FTP server denied the request to change a directory, use InternetGetLastResponseInfo to determine why. | 
 
 
     |  |  |