List of utility methods to do Is Locked Folder
boolean | isLockDir(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()) { ... |