Java tutorial
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static final String getAbsolutePath(final File file) { return file != null ? file.getAbsolutePath() : null; } }