check free space in a directory

23 ビュー (過去 30 日間)
lafnath p
lafnath p 2016 年 11 月 14 日
回答済み: Jan 2016 年 11 月 14 日
How can i check free space inside a directory to write a file

採用された回答

Jan
Jan 2016 年 11 月 14 日
There is not "free space inside a folder". Folders can be filled with data until the disk is full or if a disk quota for a specific user is reached. You can check the available disk size by:
FileObj = java.io.File(Folder);
free_bytes = FileObj.getFreeSpace;
total_bytes = FileObj.getTotalSpace;
usable_bytes = FileObj.getUsableSpace;
Note that filling a disk to more than 99% (95% is better) might cause a loss of data. If the disk is exhausted, the behaviour is not well defined.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by