Hello,
Currently I am using this code to get folder size, but every time it returns 0, there is multiple files with sizes in KB in my folder.
Is there anything wrong with the code?
BasicProperties properties = await ApplicationData.Current.LocalFolder.GetBasicPropertiesAsync();
var x = properties.Size.ToString();
Thanks in advance.