位置:首頁 > Java技術 > Java.io包 > Java.io.File.getTotalSpace()方法實例

Java.io.File.getTotalSpace()方法實例

java.io.File.getTotalSpace() 方法返回此抽象路徑名的分區的大小。

聲明

以下是java.io.File.getTotalSpace()方法的聲明:

public long getTotalSpace()

參數

  • NA

返回值

該方法返回的分區的大小,以字節為單位。

異常

  • SecurityException -- 如果安全管理器已被安裝並且它拒絕RuntimePermission("getFileSystemAttributes") 或其SecurityManager.checkRead(String)方法拒絕對文件的讀訪問。

例子

下麵的示例演示java.io.File.getTotalSpace()方法的用法。

package com.yiibai;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {
      
      File f = null;
      long v;
      boolean bool = false;
      
      try{
         // create new file
         f = new File("test.txt");
         
         // returns size of the partition named
         v = f.getTotalSpace();
         
         // true if the file path exists
         bool = f.exists();
         
         // if file exists
         if(bool)
         {
            // prints
            System.out.print("size: "+v);
         }
      }catch(Exception e){
         // if any error occurs
         e.printStackTrace();
      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

size: 290391584768