Fixed FTP download and upload file sizes being limited by available RAM (#565).
This commit is contained in:
parent
1851dcb109
commit
362a590454
2 changed files with 74 additions and 45 deletions
|
@ -229,7 +229,7 @@ public :
|
|||
/// \param data Data containing the raw listing
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
ListingResponse(const Response& response, const std::vector<char>& data);
|
||||
ListingResponse(const Response& response, const std::string& data);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Return the array of directory/file names
|
||||
|
@ -452,6 +452,9 @@ public :
|
|||
/// current working directory of the server, and the local
|
||||
/// destination path is relative to the current directory
|
||||
/// of your application.
|
||||
/// If a file with the same filename as the distant file
|
||||
/// already exists in the local destination path, it will
|
||||
/// be overwritten.
|
||||
///
|
||||
/// \param remoteFile Filename of the distant file to download
|
||||
/// \param localPath The directory in which to put the file on the local computer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue