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 7446789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T12:24:53+00:00 2026-05-29T12:24:53+00:00

In my application, I create a service that aims to read something from sd

  • 0

In my application, I create a service that aims to read something from sd card.

The service is created and started at boot time.

The problem is that although I am pretty sure that the directory exists, at the boot time, the service cannot find the directory.

public void onStart(Intent intent, int startId) {
    super.onStart(intent, startId);
    Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
    Context context=getBaseContext();
    File sdDir = new File(Environment.getExternalStorageDirectory()+"/temp/Data/");
    if(!sdDir.exists()){
        sdDir.mkdir();
        Toast.makeText(this, "CAN'T FIND!", Toast.LENGTH_LONG).show();
    }
 }

This snippet above outputs

  1. Service Started
  2. CAN’T FIND!

At first, I thought that sd card might not be mounted at boot time and that’s why the service can’t find the directory. I am still not sure about that.

Anybody has an idea? What might be the problem?

  • 1 1 Answer
  • 0 Views
  • 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-29T12:24:56+00:00Added an answer on May 29, 2026 at 12:24 pm

    Some devices take time to mount the SD card. It may not be available immediately after Boot time.

    Just poll every few seconds until it becomes available.

    Also try this:

    public static boolean hasStorage(boolean requireWriteAccess) {  
        String state = Environment.getExternalStorageState();  
    
        if (Environment.MEDIA_MOUNTED.equals(state)) {  
            return true;  
        } else if (!requireWriteAccess  && Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {  
            return true;  
        }  
        return false;  
    }
    

    From Here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How should I create application wide utility/manager classes that read settings from the database?
I have created a timeclock application in C# that connects to a web service
I'd like to create a web service that an application server can contact to
I have one android application in i have to create a service that run
I’ve created a winform application that communicates with a WCF service. The winform displays
I have two windows application, one is a windows service which create EventWaitHandle and
I've been trying to create a stable web service application for the last 2-3
I have an application which has to live as a service, I create an
I'm using Rational Application Developer to create some web services. The problem I have
My office mate created a web service application to be consumed by a .Net

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.