gpt4 book ai didi

java - 在文件路径中向后走

转载 作者:行者123 更新时间:2023-12-01 22:07:20 25 4
gpt4 key购买 nike

在我的程序中,我得到了一个文件路径E:\MyProject\ImageUploads\TestImageUpload\target\TestImageUpload2\

我需要向后走并获取E:\MyProject\ImageUploads\TestImageUpload

java中执行操作的最佳方法是什么?

最佳答案

你是这个意思吗?

for(File file = new File("E:\\MyProject\\ImageUploads\\TestImageUpload\\target\\TestImageUpload2\\"); file != null; file = file.getParentFile())
System.out.println(file);

输出:

E:\MyProject\ImageUploads\TestImageUpload\target\TestImageUpload2
E:\MyProject\ImageUploads\TestImageUpload\target
E:\MyProject\ImageUploads\TestImageUpload
E:\MyProject\ImageUploads
E:\MyProject
E:\

关于java - 在文件路径中向后走,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32443042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com