我想检查给定的文件是否存在于 android sd 卡中。我正在尝试使用绝对路径创建文件并进行检查,file.exists()
但它不起作用。该文件的 URL 是 "file:///mnt/sdcard/book1/page2.html"
并且该文件确实存在。但不知何故file.exists()
显示不一样。
问问题
31201 次
7 回答
51
File extStore = Environment.getExternalStorageDirectory();
File myFile = new File(extStore.getAbsolutePath() + "/book1/page2.html");
if(myFile.exists()){
...
}
这应该有效。
于 2012-07-02T11:09:00.820 回答
7
试试这样:
File file = new File(Environment.getExternalStorageDirectory() + "/book1/page2.html");
if (file.exists()) {
/*...*/
}
还要确保你有:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
在您的清单文件中。
于 2012-07-02T11:10:08.527 回答
1
您可以检查如下:
File file = new File(getExternalCacheDirectory(), "mytextfile.txt" );
if (file.exists()) {
//Do action
}
于 2012-07-02T11:08:31.900 回答
0
File logFile = new File(
android.os.Environment.getExternalStorageDirectory()
+ "/book1/", "page2.tml");
if (logFile.exists())
System.out.println("file exists");
else
System.out.println("file does not exist
于 2012-07-02T11:07:30.153 回答
0
做这样的事情:
File dir = Environment.getExternalStorageDirectory();
File yourFile = new File(dir, "your/file/path");
if(yourFile.exists())
{
}
于 2012-07-02T11:09:50.897 回答
0
String filepath = getFilesDir().getAbsolutePath();
String FileName = "Yourfilename" ;
File FileMain = new File(filepath, FileName);
if (FileMain.exists()){
do somthing here
}else{}
于 2012-07-02T11:11:09.913 回答
0
File file = new File(path+filename);
if (file.exists())
{
//Do something
}
检查,这将工作
于 2013-05-23T07:23:07.090 回答