Android:如何检查我的SD卡上是否存在文件

时间:2015-07-21 12:02:17

标签: java android testing

我尝试使用此代码检查我的SD卡上是否存在文件但我遇到了一些问题。我的Android手机上的API版本是19,应用程序的API版本是19,但是其他应用程序有很多例外,我不想像zedge那样使用它。请给我一些关于如何检查该文件是否存在的提示。

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    File extStore = Environment.getExternalStorageDirectory();
    File myFile = new File(extStore.getAbsolutePath() + "/test.txt");

    if(myFile.exists()){
        Log.d("File", "exists");
    }

}


public boolean isExternalStorage() {
    String state = Environment.getExternalStorageState();
    if (Environment.MEDIA_MOUNTED.equals(state)) {
        return true;
    }
    return false;
}

}

My Manifest文件是这样的:

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

1 个答案:

答案 0 :(得分:0)

您的代码只检查sdcard / fileName.ext中是否存在文件:

File extStore = Environment.getExternalStorageDirectory();
    File myFile = new File(extStore.getAbsolutePath() + "/test.txt");

    if(myFile.exists()){
        Log.d("File", "exists");
    }

要搜索整个文件系统(目录树),我们需要一个递归函数,它可以进入目录或将文件与搜索文件名进行比较:

public static boolean searchForFile(File root, File mySearchFile)
{
    if(root == null || mySearchFile == null) return; //just for safety   

    if(root.isDirectory())
    {
        Boolean flag = false;
        for(File file : root.listFiles()){
            flag = searchForDatFiles(file, mySearchFile);
            if(flag) return true;
       }
    }
    else if(root.isFile() && root.getName().equals(mySearchFile.getName())
    {
        return true;
    }
 return false;
}

<强>更新

刚刚看到您只在根文件夹中查找该文件。检查this链接有四种方法来检查文件是否存在。此外,上面的代码也适用于SD卡,但不建议使用,因为它将解析它首次遇到的任何文件夹。适用于整个目录树搜索。