- 获取文件的父目录名称
- 获取文件的父目录绝对地址
import java.io.File;
public class Main {
public static void main(String[] args) {
//创建file对象
File file = new File("C:/File/demo.txt");
//先获取file的父文件,再getName
String strParentDirectory = file.getParentFile().getName();
System.out.println("文件的上级目录为 : " + strParentDirectory);
}
}
输出结果:
File
获取文件的父目录绝对地址
import java.io.File;
public class Main {
public static void main(String[] args) {
//创建file对象
File file = new File("C:/File/demo.txt");
//先获取file的父文件,再getName
String strParentDirectory = file.getParentFile().getName();
System.out.println("文件的上级目录为 : " + strParentDirectory);
}
}
输出结果:
C:/File
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)