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