Home | History | Annotate | Download | only in io

Lines Matching defs:freeSpace

121      * FileSystemUtils.freeSpace("C:");       // Windows

122 * FileSystemUtils.freeSpace("/volume"); // *nix
136 public static long freeSpace(String path) throws IOException {
174 * FileSystemUtils.freeSpace("C:"); // Windows
175 * FileSystemUtils.freeSpace("/volume"); // *nix
349 String freeSpace = tok.nextToken();
350 return parseBytes(freeSpace, path);
357 * @param freeSpace the free space string
362 long parseBytes(String freeSpace, String path) throws IOException {
364 long bytes = Long.parseLong(freeSpace);