Get the file size : Files « JDK 7 « Java
- Java
- JDK 7
- Files
Get the file size
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception {
Path zip = Paths.get("/usr/bin/zip");
System.out.println(Files.size(zip));
}
}
Related examples in the same category