Examples of DISKFREESPACE


Examples of org.sf.feeling.swt.win32.internal.extension.DISKFREESPACE

   *            specifies the directory on the disk.
   * @return the number of free bytes available on the disk.
   */
  public static long getDiskFreeSpace(String path)
  {
    DISKFREESPACE diskSpace = Extension.GetDiskFreeSpace(path);
    return diskSpace.freeBytesAvailable;
  }
View Full Code Here

Examples of org.sf.feeling.swt.win32.internal.extension.DISKFREESPACE

   *            specifies the directory on the disk.
   * @return the number of bytes available on the disk.
   */
  public static long getDiskTotalSize(String path)
  {
    DISKFREESPACE diskSpace = Extension.GetDiskFreeSpace(path);
    return diskSpace.totalNumberOfBytes;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.