Java Utililty Methods Is Locked Folder

List of utility methods to do Is Locked Folder

Description

The list of methods to do Is Locked Folder are organized into topic(s).

Method

booleanisLockDir(File dir)
DOCUMENT ME!
boolean lock = true;
if (dir == null) {
    throw new IOException("The dir is null");
if (!dir.exists()) {
    throw new IOException("The dir don't exist");
if (dir.isDirectory()) {
...