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