Respostas:
Em qualquer dos casos, espero file.getParent()
(ou file.getParentFile()
) dar-lhe o que deseja.
Além disso, se você quiser descobrir se o original File
não existe e é um diretório, em seguida, exists()
e isDirectory()
é o que você está depois.
Se você fizer algo assim:
File file = new File("test.txt");
String parent = file.getParent();
parent
será nulo.
Portanto, para obter o diretório desse arquivo, você pode fazer o seguinte:
parent = file.getAbsoluteFile().getParent();
File API File.getParent ou File.getParentFile deve retornar o diretório do arquivo.
Seu código deve ser assim:
File file = new File("c:\\temp\\java\\testfile");
if(!file.exists()){
file = file.getParentFile();
}
Além disso, você pode verificar se o arquivo principal está no diretório usando a API File.isDirectory
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
Arquivo final = novo arquivo ("C: /dev/changeofseasons.mid"); System.out.println ("arquivo existe?" + Arquivo.exists ()); System.out.println ("diretório do arquivo:" + file.getAbsolutePath ()); Ok, desculpe pelo recuo coxo, eu não acho que seja possível formatar o código nos comentários. Ainda assim, seu código obviamente não funciona.
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";
- não acho que daria o que você espera.