embeddedmz / ftpclient-cpp

C++ client for making FTP requests
MIT License
204 stars 65 forks source link

ftp.List doesn't get expected results by folder without suffix / #53

Open lemon19900815 opened 10 months ago

lemon19900815 commented 10 months ago
std::string folder = "pictures";
std::string filelist;
ftp.List(folder, filelist); 

if i call the List interface like this, i can't get expected results, the auctual results filelist is one level above the directory. then i fix the folder suffix with /, the results is my expected!