client_Hale
2019-01-09 14a766de7ddaf2c5e6e0fc0e1d2040fe24bfa72f
Project/app/src/main/java/com/secondworld/univeralsdk/FileUtil.java
@@ -109,7 +109,7 @@
        String _originalPath = "android" + File.separator + fileName;
        String _destPath = context.getExternalFilesDir(
                "").getAbsolutePath() + File.separator + fileName;
        String _destDir = _destPath.substring(_destPath.lastIndexOf('/') + 1);
        String _destDir = _destPath.substring(0, _destPath.lastIndexOf('/') + 1);
        File _file = new File(_destDir);
        if(!_file.exists())
        {