try {
            AssetManager assets  = ctx.getAssets();
            InputStream in       = assets.open(resPath);
            FileOutputStream out = new FileOutputStream(file);
            copyStream(in, out);