<dependency>
<groupId>com.truecommons</groupId>
<artifactId>truecommons-io</artifactId>
<version>2.3.0</version>
</dependency>
import java.io.File;
import net.truelicense.io.FileIO;
public class FileProcessor {
public static void main(String[] args) {
File file = new FileIO().file("path/to/file.txt");
String filePath = file.getPath();
}
}