Downloading binary files |
To download binary files you must set the transfer mode to binary (the default) using the Ftps#setBinary method. All files will be downloaded relative to your current remote directory.
Example
// turn off auto transfer mode detection if enabled ftps.setAuto(false);
// set transfer mode to binary ftps.setBinary();
// download all files ending with .gif extension to current local directory ftps.mdownload("*.gif");
See also
|