Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java get current free disc space

/**Get the current free disc size of the system
* @return The disc size of the system as a long value 
* **/
public static long discSize() {
  File diskPartition = new File("C:");
  long freePartitionSpace = diskPartition.getFreeSpace();
  return freePartitionSpace;
}
 
PREVIOUS NEXT
Tagged: #java #current #free #disc #space
ADD COMMENT
Topic
Name
7+1 =