Package org.rzo.yajsw.util

Examples of org.rzo.yajsw.util.File


     */
    public double getDoubleValue()
    {
      if (!isValid())
        throw new RuntimeException("Cannot find Harddisk drive " + _drive);
      File file = new File(_drive);

      switch (_infoType)
      {
      case FreeSpaceInPercent:
        return ((double) file.getFreeSpace() / (double) file.getTotalSpace()) * 100;
      case FreeSpaceInBytes:
        return file.getFreeSpace();
      case TotalSpaceinBytes:
        return file.getTotalSpace();
      case UsedSpaceInBytes:
        return file.getTotalSpace() - file.getFreeSpace();
      default:
        return -1;
      }
    }
View Full Code Here


     *
     * @see org.rzo.yajsw.os.ms.win.xp.PdhCounter#isValid()
     */
    public boolean isValid()
    {
      return new File(_drive).exists() && !_infoType.equals(HDDInfoType.UnknownInfoType);
    }
View Full Code Here

TOP

Related Classes of org.rzo.yajsw.util.File

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.