当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java FileStore getUsableSpace()用法及代码示例


FileStore类的getUsableSpace()方法用于返回文件存储上此Java虚拟机可用的字节数。此方法对检查可用空间很有用。此方法将可用的可用空间作为long值返回。

用法:

public abstract long getUsableSpace()
                     throws IOException

参数:此方法不接受任何内容。


返回值:此方法将可用的可用空间作为long值返回。

异常:如果发生I /O错误,则此方法将引发IOException。

以下示例程序旨在说明getUsableSpace()方法:
示例1:

// Java program to demonstrate 
// FileStore.getUsableSpace() method 
  
import java.io.IOException; 
import java.nio.file.FileStore; 
import java.nio.file.Files; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create the object of Path 
        Path path 
            = Paths.get( 
                "E:\\Tutorials\\file.txt"); 
  
        // get FileStore object 
        try { 
  
            FileStore fs 
                = Files.getFileStore(path); 
  
            // print FileStore name and Total usable space 
            System.out.println("FileStore Name: "
                               + fs.name()); 
            long bytes = fs.getUsableSpace(); 
            long sizeInGB = bytes / (1024 * 1024); 
            System.out.println("Usable Space: "
                               + sizeInGB + " MB"); 
        } 
        catch (IOException e) { 
  
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    } 
}

输出:

示例2:

// Java program to demonstrate 
// FileStore.getUsableSpace() method 
  
import java.io.IOException; 
import java.nio.file.FileStore; 
import java.nio.file.Files; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create the object of Path 
        Path path 
            = Paths.get( 
                "C:\\Movies\\001.txt"); 
  
        // get FileStore object 
        try { 
  
            FileStore fs 
                = Files.getFileStore(path); 
  
            // print FileStore name and Total usable space 
            System.out.println("FileStore Name: "
                               + fs.name()); 
            long bytes = fs.getUsableSpace(); 
            long sizeInGB = bytes / (1024); 
            System.out.println("Usable Space: "
                               + sizeInGB + " KB"); 
        } 
        catch (IOException e) { 
  
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    } 
}

输出:

参考:https://docs.oracle.com/javase/10/docs/api/java/nio/file/FileStore.html#getUsableSpace()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 FileStore getUsableSpace() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。