Home | History | Annotate | Download | only in io

Lines Matching defs:freeSpace

121      * FileSystemUtils.freeSpace("C:");       // Windows
122 * FileSystemUtils.freeSpace("/volume"); // *nix
137 public static long freeSpace(String path) throws IOException {
175 * FileSystemUtils.freeSpace("C:"); // Windows
176 * FileSystemUtils.freeSpace("/volume"); // *nix
350 String freeSpace = tok.nextToken();
351 return parseBytes(freeSpace, path);
358 * @param freeSpace the free space string
363 long parseBytes(String freeSpace, String path) throws IOException {
365 long bytes = Long.parseLong(freeSpace);