Yanıtlar:
Her iki durumda da, file.getParent()
(veya file.getParentFile()
) size istediğinizi vermeyi beklerdim .
Özgün öğrenmek istiyorsanız Ayrıca, File
does vardır ve bir sonra, bir dizin exists()
ve isDirectory()
vardır Neyin peşinde.
Böyle bir şey yaparsanız:
File file = new File("test.txt");
String parent = file.getParent();
parent
boş olacak.
Yani bu dosyanın dizinini almak için daha sonra yapabilirsiniz:
parent = file.getAbsoluteFile().getParent();
File API File.getParent veya File.getParentFile size Directory of file döndürmelidir.
Kodunuz şöyle olmalıdır:
File file = new File("c:\\temp\\java\\testfile");
if(!file.exists()){
file = file.getParentFile();
}
Ayrıca File.isDirectory API'sini kullanarak üst dosyanızın dizin olup olmadığını kontrol edebilirsiniz.
if(file.isDirectory()){
System.out.println("file is directory ");
}
File directory = new File("Enter any directory name or file name"); boolean isDirectory = directory.isDirectory(); if (isDirectory) { // It returns true if directory is a directory. System.out.println("the name you have entered is a directory : " + directory); //It returns the absolutepath of a directory. System.out.println("the path is " + directory.getAbsolutePath()); } else { // It returns false if directory is a file. System.out.println("the name you have entered is a file : " + directory); //It returns the absolute path of a file. System.out.println("the path is " + file.getParent()); }
code
final Dosya dosyası = yeni Dosya ("C: /dev/changeofseasons.mid"); System.out.println ("dosya var mı?" + File.exists ()); System.out.println ("dosyanın dizini:" + file.getAbsolutePath ()); Tamam, girinti yaptığım için özür dilerim, yorumlarda kodu formatlamanın mümkün olduğunu sanmıyorum. Yine de kodunuz belli ki çalışmıyor.
File filePath=new File("your_file_path");
String dir="";
if (filePath.isDirectory())
{
dir=filePath.getAbsolutePath();
}
else
{
dir=filePath.getAbsolutePath().replaceAll(filePath.getName(), "");
}
your_file_path = "C:\\testfiles\\temp\\testfile";
- umduğunuz şeyi vereceğini sanmıyorum.