Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 562651
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:34:37+00:00 2026-05-13T12:34:37+00:00

This is probably a really dumb/noob like question but what is the best method

  • 0

This is probably a really dumb/noob like question but what is the best method to have an .apk file that when installed drops a zip file onto the sd card, in a specific directory, from the assets or raw folder?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T12:34:38+00:00Added an answer on May 13, 2026 at 12:34 pm

    I have an app that needs to do that and what I do is check if what I need is on the SDCard when I run, that way I can replace it if the user deletes it. Here’s my code for that:

    void copyAssets()
    {
        String[] files;
        try
        {
            files = this.getResources().getAssets().list("");
        }
        catch (IOException e1)
        {
            return;
        }
    
        if(!mWorkingPath.exists())
        {
            if(!mWorkingPath.mkdirs())
            {
                new AlertDialog.Builder(this)
                    .setTitle(R.string.ERROR)
                    .setMessage(R.string.FAILED_DIR_CREATE)
                    .setPositiveButton(android.R.string.ok, new OnClickListener(){
                        @Override
                        public void onClick(DialogInterface dialog, int which)
                        {
                            dialog.dismiss();
                        }
                    })
                    .create()
                    .show();
            }
        }
    
        for(int i = 0; i < files.length; i++)
        {
            try
            {
                String fileName = files[i];
    
                if(fileName.compareTo("images") == 0 ||
                   fileName.compareTo("sounds") == 0 ||
                   fileName.compareTo("webkit") == 0)
                {
                    continue;
                }
    
                File outFile = new File(mWorkingPath, fileName);
                if(outFile.exists()) continue;
    
                InputStream in = getAssets().open(fileName);
                OutputStream out = new FileOutputStream(outFile);
    
                // Transfer bytes from in to out
                byte[] buf = new byte[1024];
                int len;
                while ((len = in.read(buf)) > 0)
                {
                    out.write(buf, 0, len);
                }
    
                in.close();
                out.close();
            }
            catch (FileNotFoundException e)
            {
                e.printStackTrace();
            }
            catch (IOException e)
            {
                e.printStackTrace();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is probably a really dumb question, but I'm finding conflicting information. I have
This probably sounds like a really dumb question, but here goes....Web Services, what the
This is probably a really dumb question with a simple answer but... I am
I feel really dumb for asking this question, but here it goes. I have
This is probably a really dumb question, but I don't know what if [
This is probably a really stupid MSBuild question but if I have <ItemGroup> <Dll
This is probably a really dumb question, but it's virtually impossible to google the
This is a really dumb question. But I have a hard time with Oracle
This is probably a really dumb question, but I can't seem to figure it
I feel like this is probably a pretty dumb question, but I am just

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.