There is a free version and paid-for versions which add some of the advanced functionality.
Get it from the following link: http://www.xlightftpd.com
Apologies if you don't find anything of interest here, it's more for my own use than anyone else's. I'm a network & server administrator from Preston, UK. I'm sure you're not interested in my personal opinions, so mostly this blog will be stuff that I need to know for my own use, if you find it useful too then I'm glad.
The following powershell script will allow you to delete all files in the current directory, and any subdirectories, older than 3 months old. I would suggest sticking it in a script and automating it.
gci -r *.* | ? {$_.lastwritetime -lt (get-date).addmonths(-3)} | ri
dnscmd servername /recordadd mydomain.com host /createptr A 192.168.0.1The command above will add a record of 'host.mydomain.com' with an address of 192.168.0.1 into the server specified in 'servername' and it will also create the corresponding PTR (reverse-dns) entry.