Back to project page PhotoNote.
The source code is released under:
MIT License
If you think the Android project PhotoNote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jp.gr.java_conf.neko_daisuki.photonote; /* ww w . j a v a 2 s . co m*/ import java.io.File; import android.util.Log; public class FileUtil { private static final String LOG_TAG = "file"; public static void makeDirectories(String[] directories) { for (String d: directories) { if (new File(d).mkdirs()) { Log.i(LOG_TAG, String.format("make directory: %s", d)); } } } }