PathUtils.java
372 Bytes
package com.polysoft.nafmii.utils;
import java.io.File;
public class PathUtils {
public static File getDistPath() {
File dist = new File(getRootDir(), "dist");
if (!dist.exists()) {
dist.mkdirs();
}
return dist;
}
public static File getRootDir() {
return CtxUtils.getApplication().getFilesDir();
}
}