| | |
| | | package com.basic.security.manager; |
| | | |
| | | import com.basic.security.utils.Constants; |
| | | |
| | | import java.io.File; |
| | | |
| | | import static com.basic.security.utils.Constants.attachmentPath; |
| | | |
| | | public class DirManager { |
| | | public static void mkdirs() { |
| | | new File("/sdcard/security_attachment/"); |
| | | new File("/sdcard/security_database").mkdirs(); |
| | | new File("/sdcard/security_simplify_database").mkdirs(); |
| | | new File("/sdcard/security_excel_database/").mkdirs(); |
| | | new File("/sdcard/security_excel_database/").mkdirs(); |
| | | new File("/sdcard/security_excel_database/").mkdirs(); |
| | | new File("/sdcard/security_excel_attachment/").mkdirs(); |
| | | new File(attachmentPath).mkdirs(); |
| | | new File(Constants.baseDatabasePath).getParentFile().mkdirs(); |
| | | } |
| | | } |