Here you can find the source of getCanonicalFile(final File file)
Parameter | Description |
---|---|
file | Fichero del cual obtener su forma canónica. |
public static File getCanonicalFile(final File file)
//package com.java2s; //License from project: Apache License import java.io.File; import java.io.IOException; import java.util.logging.Logger; public class Main { private static final Logger LOGGER = Logger.getLogger("es.gob.afirma"); /** Devuelve el fichero en su forma canónica. * @param file Fichero del cual obtener su forma canónica. * @return Fichero en su forma canónica o el fichero de entrada si hay error.*/ public static File getCanonicalFile(final File file) { try {//from w w w .j a va2 s . c o m return file.getCanonicalFile(); } catch (final IOException e) { LOGGER.severe("No se ha podido obtener el fichero canonico: " + e //$NON-NLS-1$ ); return file; } } }