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


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


FileStore类的type()方法用于返回此文件存储的类型和高度特定于实现的返回字符串的格式。

用法:

public abstract String type()

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


返回值:此方法返回一个表示此文件存储类型的字符串。

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

// Java program to demonstrate 
// FileStore.type() 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 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()); 
            String type = fs.type(); 
            System.out.println("Type: "
                               + type); 
        } 
        catch (IOException e) { 
  
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    } 
}

输出:

程序2:

// Java program to demonstrate 
// FileStore.type() 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 object of Path 
        // create object of Path 
        Path path 
            = Paths.get( 
                "C:\\Movies\\document.txt"); 
  
        // get FileStore object 
        try { 
  
            FileStore fs 
                = Files.getFileStore(path); 
  
            // print FileStore name 
            // and Total usable space 
            System.out.println("FileStore Name: "
                               + fs.name()); 
            String type = fs.type(); 
            System.out.println("Type: "
                               + type); 
        } 
        catch (IOException e) { 
  
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    } 
}

输出:

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



相关用法


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