Java Path File Name nio getFullPath(String basePath, String fileName)

Here you can find the source of getFullPath(String basePath, String fileName)

Description

get Full Path

License

Apache License

Declaration

public static Path getFullPath(String basePath, String fileName) 

Method Source Code

//package com.java2s;
/**/*from www .  j  a va  2s  .  c  om*/
 * Copyright (c) 2014 Ernesto Posse
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. 
 * 
 * @author Ernesto Posse
 * @version 0.1 
 */

import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
    public static Path getFullPath(String basePath, String fileName) {
        return Paths.get(Paths.get(basePath, fileName).toString().replaceAll("~", System.getProperty("user.home")))
                .toAbsolutePath();
    }
}

Related

  1. getFilePathName(Path filePath)
  2. getFilePathsInFolder(String sensorName)
  3. getFilesFromDirectory(Path directory, List filenames)
  4. getFormattedDisplayName(String fileDisplayName, Path path, String baseDir)
  5. getFullFileName(Path path)
  6. getIndexPath(String rootDirectory, String basename)
  7. getJarContainingClass(String path, String className)
  8. getLatestUpgradeScriptName(Path upgradeScriptsDir)
  9. getLocalFilePath(String localDirectory, String filename)