Get folder size

前端 未结 8 1173
生来不讨喜
生来不讨喜 2020-12-30 06:27

Do you know how can I get the folder size in Java?

The length() method in the File class only works for files, using that method I always get a size of 0.

8条回答
  •  既然无缘
    2020-12-30 06:59

    Iterate over all subfolders in the folder and get the summary size of all files there.

提交回复
热议问题