FanDjango

Results 406 comments of FanDjango

Many clients have an "MDEL", "MPUT" and "MGET" client command (with or without prompting) and they internally do the needed `GetListing` and globbing to allow such operations as ``` MDEL...

Ok, I did some more research. Some servers have actually got specialized RMDIR commands, like for example proftpd. And these are known to FluentFTP - Here is the current list...

..which I have done. There is PR out there now and once it is merged, you can do this: New function entirely: `EmptyDirectory(...)` i.e. "make a directory become empty". Using...

@wertzui See the above amended usage for `EmptyDirectory(...)`. It has been merged and you could use it from now by getting the master branch down from GitHub. Since some other...

See #101 Should work in current versions of FluentFTP. See also Wiki [path problems](https://github.com/robinrodricks/FluentFTP/wiki/Troubleshooting#trouble_paths)

I have reproduced this and can confirm this behaviour. It seems that the sockets in the selection loop are not being selected because they are still in a listening state,...

Looks to me like on a Listen - Accept sequence, the bound listening socket is overwritten by the acceptance socket, thereby "leaving it hanging", still listening. Subsequent close/dispose actions will...

I have put up a PR #957 that fixes this - perhaps @DoraemonYu you can find some way to test this, before it is released by @robinrodricks for everyone?

Thanks once again for the excellent diagnosis. I found the place: `private void CheckResult(SocketAsyncEventArgs args) {...}` Added the needed `.Close()` and tested it with .NET 6. Once it is merged,...