Searched refs:makeWorldReadable (Results 1 – 2 of 2) sorted by relevance
130 static void extractZipSafely(InputStream is, File targetDir, boolean makeWorldReadable) in extractZipSafely() argument134 FileUtils.ensureDirectoriesExist(targetDir, makeWorldReadable); in extractZipSafely()148 FileUtils.ensureDirectoriesExist(entryFile, makeWorldReadable); in extractZipSafely()153 entryFile.getParentFile(), makeWorldReadable); in extractZipSafely() local165 if (makeWorldReadable) { in extractZipSafely()166 FileUtils.makeWorldReadable(entryFile); in extractZipSafely()
62 public static void ensureDirectoriesExist(File dir, boolean makeWorldReadable) in ensureDirectoriesExist() argument76 if (makeWorldReadable) { in ensureDirectoriesExist()89 makeWorldReadable(directory); in makeDirectoryWorldAccessible()95 public static void makeWorldReadable(File file) throws IOException { in makeWorldReadable() method in FileUtils