I want to list out all the folder names and sizes in /
path
In my case I have two folders in `/ path
XYZ
(12MB)ABC
(10MB)
I want to get names and sizes using FluentFTP to achieve it with blazor.
I am using BabyFTP as a test FTP server.
what I have done is
private void GetFileSize()
{
using (var conn = new FtpClient("127.0.0.1"))
{
conn.Connect();
foreach (FtpListItem item in conn.GetListing("/"))
{
Console.WriteLine(item.Name);
Console.WriteLine(item.Size);
}
conn.Disconnect();
}
}
But I am getting Name
correct but I am getting Size
as 0
.
How to get size of each folder?