Java tutorial
//package com.java2s; import java.io.File; public class Main { public static File getCurrentDirectory() { return new File(System.getProperty("user.dir")); } }