try {
            Resources res        = ctx.getResources();
            InputStream in       = res.openRawResource(resId);
            FileOutputStream out = new FileOutputStream(file);
            copyStream(in, out);