com.faker.android.paker.FileUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.faker.android.paker;
import java.io.*;
import java.util.zip.CRC32;
import java.util.zip.CheckedInputStream;
public class FileUtil {
public static boolean deleteDir(File dir) {
if (dir.isDirectory()) {
String[] children = dir.list();
for (int i=0; i