how can i calculate total size of a folder?
조회 수: 26 (최근 30일)
이전 댓글 표시
i'm reading a folder of images , now i wanna display its total size in my GUI. how can i get total size of the folder that i access?
댓글 수: 0
채택된 답변
Walter Roberson
2015년 5월 10일
Note: the meaning if bytes on a directory entry would depend upon your operating system.
댓글 수: 0
추가 답변 (1개)
Avnet
2024년 4월 3일
This does the trick:
D = dir('**/*.mat'); % descends current folder and its sub-folders
total_bytes = 0;
for ii = 1:length(D)
total_bytes = total_bytes + D(ii).bytes;
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!