public static string getInternalStorageFilesDir(Activity act)
 {
     if (act != null)
     {
         return toFolderPathFormat(act.getFilesDir().getPath());
     }
     else
     {
         Log.e(TAG, "Activity is null in getInternalStorageFilesDir method");
     }
     return "";
 }