I'd like to download folder with c# FluentFTP library. The folder is downloaded but I'd like to have in my machine only the last folder in the given path.
List<FtpResult> res = client.DownloadDirectory(tmpFolder, "play_files\\test_folder\\", FtpFolderSyncMode.Update);
return res;
what I get in the local folder is a folder named play_files and a subfolder test_folder.
what I want to get , is just one folder test_folder and I'd like to know if is it possible to rename it or not.