MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / getWorkingDirectory

Method getWorkingDirectory

src/com/cloudream/ishow/App.java:48–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

46 }
47
48 public static String getWorkingDirectory()
49 {
50 final File pictures = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
51 File file = new File(pictures, "PerfectShow");
52 if(!file.exists())
53 file.mkdir();
54 else if(file.isFile())
55 {
56 Log.w(TAG, file.getPath() + " is occupied");
57 return pictures.getPath();
58 }
59
60 return file.getPath();
61 }
62
63 public boolean isApplicationInstalled(String packageName)
64 {

Callers 2

makeupMethod · 0.95
initImageLoaderMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected