Java Path File Name nio fileName(final Path path)

Here you can find the source of fileName(final Path path)

Description

Get just the filename part of the path

License

Open Source License

Return

The filename

Declaration

public static String fileName(final Path path) 

Method Source Code

//package com.java2s;
/*/*from  w w w  .  j a  va2s  . c om*/
 * eXist Open Source Native XML Database
 * Copyright (C) 2001-2015 The eXist Project
 * http://exist-db.org
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

import java.nio.file.*;

public class Main {
    /**
     * Get just the filename part of the path
     *
     * @return The filename
     */
    public static String fileName(final Path path) {
        return path.getFileName().toString();
    }
}

Related

  1. compileAndLoad(Path basePath, String className)
  2. concatFileName(String fileName, Path pathLocation)
  3. convertFilePathToName(Path file)
  4. detectFilePath(String propertyName, String confFileName)
  5. endsWith(File file, String pathname)
  6. fileName(final Path thePath)
  7. filterJarContainingClass(Collection jarsPaths, String className)
  8. findExecutablePaths(String executableName)
  9. findFile(Path directoryPath, String fileName)