All Questions
2 questions
0
votes
1
answer
282
views
how to get directory size with flutter?
I'm using flutter and I want to know the capcity size of a directory.
this is my code :
final String directory = (await getApplicationSupportDirectory()).path;
My question is how to get directory ...
2
votes
2
answers
8k
views
How to get total size of a folder in C with recursivity?
All the folders have the size 4096 B.
How do I get the total size of a folder with all the file size inside?
For example:
> Dir1 (4096)
> -- File1.txt (100)
> -- Dir 2 (4096)
> ---- ...