get file's folder path java code example
Example: get file name from file path in java
package com.tutorialspoint;
import java.io.File;
public class FileDemo {
public static void main(String[] args) {
File f = null;
File f1 = null;
String v, v1;
boolean bool = false;
try {
f = new File("C:\\test.txt");
f1 = new File("C:\\Program Files");
v = f.getName();
v1 = f1.getName();
bool = f.exists();
if(bool) {
System.out.println("File name: "+v);
}
bool = f1.exists();
if(bool) {
System.out.print("Folder name: "+v1);
}
} catch(Exception e) {
e.printStackTrace();
}
}
}