集册 Java实例教程 获取文件名路径的父级

获取文件名路径的父级

欢马劈雪     最近更新时间:2020-01-02 10:19:05

590
获取文件名路径的父项
/** 
来 自 
时 代 J a v a 公 众 号 - nowjava.com
**/

import java.io.File;


public class Main {


  public void main(String[] argv) {

    // Get the parent of a relative filename path

    File file = new File("Ex1.java");

    String parentPath = file.getParent(); // null

    File parentDir = file.getParentFile(); // null


    // Get the parents of an absolute filename path

    file = new File("D:\\folder\\Ex1.java");

    parentPath = file.getParent(); // D:\folder

    parentDir = file.getParentFile(); 


    parentPath = parentDir.getParent(); // D:\//来 自 N o w J a v a . c o m - 时  代  Java

    parentDir = parentDir.getParentFile();
展开阅读全文