SFtpDir C Library ReferenceSFtpDirRepresents a remote SFTP directory listing. Create/Dispose HCkSFtpDir CkSFtpDir_Create(void);
void CkSFtpDir_Dispose(HCkSFtpDir handle);
C "Properties" void CkSFtpDir_getLastErrorHtml(HCkSFtpDir handle, HCkString retval);
void CkSFtpDir_getLastErrorText(HCkSFtpDir handle, HCkString retval);
void CkSFtpDir_getLastErrorXml(HCkSFtpDir handle, HCkString retval);
int CkSFtpDir_getNumFilesAndDirs(HCkSFtpDir handle);
void CkSFtpDir_getOriginalPath(HCkSFtpDir handle, HCkString retval);
BOOL CkSFtpDir_getUtf8(HCkSFtpDir handle);
C "Methods" HCkSFtpFile CkSFtpDir_GetFileObject(HCkSFtpDir handle, int index);
BOOL CkSFtpDir_GetFilename(HCkSFtpDir handle, int index, HCkString outStr);
BOOL CkSFtpDir_SaveLastError(HCkSFtpDir handle, const char *filename); Saves the last error information to an XML formatted file. const char *CkSFtpDir_getFilename(HCkSFtpDir handle, int index);
const char *CkSFtpDir_lastErrorHtml(HCkSFtpDir handle); Error information in HTML format for the last method called. const char *CkSFtpDir_lastErrorText(HCkSFtpDir handle); Error information in plain-text format for the last method called. const char *CkSFtpDir_lastErrorXml(HCkSFtpDir handle); Error information in XML format for the last method called. const char *CkSFtpDir_originalPath(HCkSFtpDir handle);
|