The code below demonstrates how to obtain file system root available on your system. In Linux, you will have a single root (/
) while on Windows you could get C:\
or D:\
that represent the root drives.
package org.kodejava.io;
import java.io.File;
public class FileSystemRoot {
public static void main(String[] args) {
// List the available filesystem roots.
File[] root = File.listRoots();
// Iterate the entire filesystem roots.
for (File file : root) {
System.out.println("Root: " + file.getAbsolutePath());
}
}
}
The result of the code snippet:
Root: C:\
Root: D:\
Root: F:\
Latest posts by Wayan (see all)
- How do I split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023