Commit 414ea8b1 by amateur

1

1 parent 9f947bbd
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();
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!