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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:01:27+00:00 2026-06-10T13:01:27+00:00

I found out that different versions of android puts the received bluetooth files in

  • 0

I found out that different versions of android puts the received bluetooth files in different folder. For instance, one of my test phones running android 2.2 saves the files to this path:

/mnt/sdcard/Downloads/Bluetooth

and my second test phone, running android 4.0 saves the files here

/mnt/sdcard/Bluetooth

Is this operating system “issue” or is it set from the manufacture of the phone?

If the first statement is the correct can I check which version of android running, and the point to the bluetooth folder? Or is there a much simpler way to do this?

Thanks!

  • 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-06-10T13:01:28+00:00Added an answer on June 10, 2026 at 1:01 pm

    After some hours I made two methods for doing this. You should put the methods in a AsyncTask or a Thread. So here is my two methods:

    public List<File> folderSearchBT(File src, String folder)
            throws FileNotFoundException {
    
        List<File> result = new ArrayList<File>();
    
        File[] filesAndDirs = src.listFiles();
        List<File> filesDirs = Arrays.asList(filesAndDirs);
    
        for (File file : filesDirs) {
            result.add(file); // always add, even if directory
            if (!file.isFile()) {
                List<File> deeperList = folderSearchBT(file, folder);
                result.addAll(deeperList);
            }
        }
        return result;
    }
    

    This is a recursive method which will add all folders in the src parameter into a List.

    I use this method in this method here:

    public String searchForBluetoothFolder() {
    
        String splitchar = "/";
        File root = Environment.getExternalStorageDirectory();
        List<File> btFolder = null;
        String bt = "bluetooth";
        try {
            btFolder = folderSearchBT(root, bt);
        } catch (FileNotFoundException e) {
            Log.e("FILE: ", e.getMessage());
        }
    
        for (int i = 0; i < btFolder.size(); i++) {
    
            String g = btFolder.get(i).toString();
    
            String[] subf = g.split(splitchar);
    
            String s = subf[subf.length - 1].toUpperCase();
    
            boolean equals = s.equalsIgnoreCase(bt);
    
            if (equals)
                return g;
        }
        return null; // not found
    }
    

    Hope this helps, guys!

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

Sidebar

Related Questions

I am developing an Android app and have already found out that different Android
I found out that I can use a different theme in an C# WPF
Reading Kohana's documentation, I found out that the main difference in 3.0 version is
I found out that it is possible to open the windows explorer with a
I found out that HTML form supports only two enctype types. They are application/x-www-form-urlencoded
I found out that the FormWizard only __init__ 's once, when the url is
Just found out that the video output of the iPad is not a system
I found out that in order to open a Gmail compose screen you'd have
I found out that in C# a+=1 is not equal to a = a+1.
I just found out that every time onclick event for my <button> placed inside

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.