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 cHandle, HCkString retval);
void CkSFtpDir_getLastErrorText(HCkSFtpDir cHandle, HCkString retval);
void CkSFtpDir_getLastErrorXml(HCkSFtpDir cHandle, HCkString retval);
int CkSFtpDir_getNumFilesAndDirs(HCkSFtpDir cHandle);
void CkSFtpDir_getOriginalPath(HCkSFtpDir cHandle, HCkString retval);
BOOL CkSFtpDir_getUtf8(HCkSFtpDir cHandle);
C "Methods" HCkSFtpFile CkSFtpDir_GetFileObject(HCkSFtpDir cHandle, int index);
BOOL CkSFtpDir_GetFilename(HCkSFtpDir cHandle, int index, HCkString outStr);
BOOL CkSFtpDir_SaveLastError(HCkSFtpDir cHandle, const char *filename); Saves the last error information to an XML formatted file. const char *CkSFtpDir_getFilename(HCkSFtpDir cHandle, int index);
const char *CkSFtpDir_lastErrorHtml(HCkSFtpDir cHandle); Error information in HTML format for the last method called. const char *CkSFtpDir_lastErrorText(HCkSFtpDir cHandle); Error information in plain-text format for the last method called. const char *CkSFtpDir_lastErrorXml(HCkSFtpDir cHandle); Error information in XML format for the last method called. const char *CkSFtpDir_originalPath(HCkSFtpDir cHandle);
|