Quantcast
Channel: check – PenTesting | Hacking | Coding
Viewing all articles
Browse latest Browse all 11

Check if file or directory exists in Java

$
0
0

Check if file exists:

File f = new File("/path/to/filename");
if(f.exists()){
    ..
}

Check if directory exists:

File f = new File("/path/to/folder/");
if(f.exists() && f.isDirectory()){
    ..
}

Viewing all articles
Browse latest Browse all 11

Trending Articles