Unicode C
Unicode C
Upload Multiple FTP Files by Wildcard (MPUT)
See more FTP Examples
Demonstrates the Chilkat Ftp2.MPutFiles method, which uploads each local file matching a pattern to the current remote directory. The only argument is the local pattern, which may include a directory and wildcard. It returns the number of files uploaded, or -1 on failure.
Note: The local paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: The upload counterpart to
MGetFiles — FTP's mput. The wildcard is matched against the local filesystem, and every match is sent to the current remote directory; subdirectories are not traversed, so use PutTree for a recursive upload. As with MGetFiles, the return distinguishes a genuine failure (-1) from simply matching nothing.Chilkat Unicode C Downloads
#include <C_CkFtp2W.h>
void ChilkatSample(void)
{
BOOL success;
HCkFtp2W ftp;
int numUploaded;
success = FALSE;
// Demonstrates the Ftp2.MPutFiles method, which uploads each local file matching a pattern to the
// current remote directory. The only argument is the local pattern (which may include a
// directory and wildcard). It returns the number of files uploaded, or -1 on failure.
ftp = CkFtp2W_Create();
CkFtp2W_putHostname(ftp,L"ftp.example.com");
CkFtp2W_putUsername(ftp,L"myFtpLogin");
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
CkFtp2W_putPassword(ftp,L"myPassword");
success = CkFtp2W_Connect(ftp);
if (success == FALSE) {
wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
CkFtp2W_Dispose(ftp);
return;
}
success = CkFtp2W_ChangeRemoteDir(ftp,L"public_html");
if (success == FALSE) {
wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
CkFtp2W_Dispose(ftp);
return;
}
// Upload all .html files from a local directory. Subdirectories are not traversed.
numUploaded = CkFtp2W_MPutFiles(ftp,L"qa_data/site/*.html");
if (numUploaded < 0) {
wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
CkFtp2W_Dispose(ftp);
return;
}
wprintf(L"Uploaded %d files.\n",numUploaded);
success = CkFtp2W_Disconnect(ftp);
if (success == FALSE) {
wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
CkFtp2W_Dispose(ftp);
return;
}
CkFtp2W_Dispose(ftp);
}