How to find how much disk space is left using Java?
|
|
Just look at the documentation. This is one of the new features in 1.6. These new methods also include:
If your still using 1.5 then you can use the Apache Commons library and it's FileSystem class |
|||
|
|
|
|
Use CommonsIO and FilesystemUtils: e.g.
or built into the JDK: http://java.sun.com/javase/6/docs/api/java/io/File.html#getFreeSpace()
|
|||
|
|
|
|
|
|||
|
