Hello there!
I'm encountering some strange problem using edtFTPnet free version. I'm connecting from Windows-based .NET client to Linux FTP, periodically downloading some files, and, when they become obsolete, I need to delete them. The code
private FTPClient client;
client.Delete(path_to_file);
do well for me, files become deleted, BUT the amount of free space, available on /dev/sda1 doesn't increase... As new files on Linux continue to appear, soon or late it ends and "Out of space" error raises. All of space, occupied by deleted files, become available when FTP connection is closed. Here is some
syslog from target Linux:
Jan 22 10:37:23 KAES_BUKM2 supervisor: Correct time: modes = 0x00000003 phase = -6 freq = 9175040 tick = 10000
Jan 22 10:37:52 KAES_BUKM2 supervisor: /dev/sda1: FreeBlocks: 35614 TotalBlocks: 242942
Jan 22 10:37:52 KAES_BUKM2 supervisor: RAM: MemFree: 4728 kB MemTotal: 248896 kB
Jan 22 10:38:23 KAES_BUKM2 supervisor: Correct time: modes = 0x00000001 phase = -50 freq = 9175040 tick = 10000
Jan 22 10:38:53 KAES_BUKM2 supervisor: /dev/sda1: FreeBlocks: 35599 TotalBlocks: 242942
Jan 22 10:38:53 KAES_BUKM2 supervisor: RAM: MemFree: 4728 kB MemTotal: 248896 kB
Jan 22 10:39:15 KAES_BUKM2 proftpd[19381]: KAES_BUKM2 (192.168.19.10[192.168.19.10]) - FTP session closed.
Jan 22 10:39:23 KAES_BUKM2 supervisor: Correct time: modes = 0x00000001 phase = 59 freq = 9175040 tick = 10000
Jan 22 10:39:54 KAES_BUKM2 supervisor: /dev/sda1: FreeBlocks: 187910 TotalBlocks: 242942
Jan 22 10:39:54 KAES_BUKM2 supervisor: RAM: MemFree: 160224 kB MemTotal: 248896 kB
Jan 22 10:40:23 KAES_BUKM2 supervisor: Correct time: modes = 0x00000001 phase = -9 freq = 9175040 tick = 10000
Jan 22 10:40:55 KAES_BUKM2 supervisor: /dev/sda1: FreeBlocks: 187906 TotalBlocks: 242942
Jan 22 10:40:55 KAES_BUKM2 supervisor: RAM: MemFree: 160240 kB MemTotal: 248896 kB
Is it normal? Maybe I need to reconnect FTP after each file deletion? Or am I paranoid?)))