I call the RemoveDirectory method and get a mistake:
[ILINK32 Fehler] Error: Nicht auflösbares externes '__fastcall Scsftpclient::TScSFTPClient::RemoveDirectoryW(const System::UnicodeString)' referenziert von P:\HOME \DEBUG\WIN32\MAIN.OBJ
why RemoveDirectoryW ??
regards
Horst
if (ListBox1->Items->Count >0)
{
for (I = 0; I <= (ListBox1->Items->Count - 1); I++)
{
ScSFTPClient1->RemoveDirectory(FtpPfad+AnsiString("/")+ListBox1->Items->Strings);
}
} //ENDE if (ListBox1->Items->Count >0)
RemoveDirectory
Re: RemoveDirectory
To solve the issue, please try to add the following code in TScSFTPClient.hpp:
before the code line:
Code: Select all
#undef RemoveDirectory
Code: Select all
void __fastcall RemoveFile(const System::UnicodeString FileName);
Re: RemoveDirectory
Feel free to contact us if you have any further questions about SecureBridge.