如何在 SD 卡上自动创建目录

我正试图将文件保存到以下位置
FileOutputStream fos = new FileOutputStream("/sdcard/Wallpaper/"+fileName); 但是我得到了异常 java.io.FileNotFoundException
但是,当我把路径设置为 "/sdcard/"时,它就可以工作了。

现在我假设我不能以这种方式自动创建目录。

有人能建议如何使用代码创建 directory and sub-directory吗?

272456 次浏览

如果您创建了一个包装顶级目录的 档案对象,那么您可以调用它的 ()方法来构建所有需要的目录。比如:

// create a File object for the parent directory
File wallpaperDirectory = new File("/sdcard/Wallpaper/");
// have the object build the directory structure, if needed.
wallpaperDirectory.mkdirs();
// create a File object for the output file
File outputFile = new File(wallpaperDirectory, filename);
// now attach the OutputStream to the file object, instead of a String representation
FileOutputStream fos = new FileOutputStream(outputFile);

注意: 使用 GetExternalStorageDirectory ()获取“ SD Card”目录可能是明智的,因为如果出现一部手机,其中除了 SD 卡之外还有其他东西(比如内置闪存,就像 iPhone 一样) ,这种情况可能会改变。无论哪种方式,你应该记住,你需要检查,以确保它的实际存在,因为 SD 卡可能被删除。

更新: 由于 API 级别4(1.6) ,您还必须请求该权限。类似这样的东西(在清单中)应该起作用:

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

遇到了同样的问题,只是想添加 AndroidManifest.xml 也需要这个权限:

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

随着 API 8和更高版本,SD 卡的位置发生了变化。@ fiXedd 的回答很好,但是为了更安全的代码,应该使用 Environment.getExternalStorageState()检查媒体是否可用。然后,您可以使用 getExternalFilesDir()导航到所需的目录(假设您使用的是 API 8或更高版本)。

你可以在 SDK 文档阅读更多。

这是对我有效的方法。

 uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"

以及下面的代码

public static boolean createDirIfNotExists(String path) {
boolean ret = true;


File file = new File(Environment.getExternalStorageDirectory(), path);
if (!file.exists()) {
if (!file.mkdirs()) {
Log.e("TravellerLog :: ", "Problem creating Image folder");
ret = false;
}
}
return ret;
}

我当时也面临着同样的问题,无法在 Galaxy S 上创建目录,但在 Nexus 和 Samsung Droid 上成功创建了目录。我是通过添加以下代码行来修复它的:

File dir = new File(Environment.getExternalStorageDirectory().getPath()+"/"+getPackageName()+"/");
dir.mkdirs();

确保有外部存储器: Http://developer.android.com/guide/topics/data/data-storage.html#filesexternal

private boolean isExternalStoragePresent() {


boolean mExternalStorageAvailable = false;
boolean mExternalStorageWriteable = false;
String state = Environment.getExternalStorageState();


if (Environment.MEDIA_MOUNTED.equals(state)) {
// We can read and write the media
mExternalStorageAvailable = mExternalStorageWriteable = true;
} else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
// We can only read the media
mExternalStorageAvailable = true;
mExternalStorageWriteable = false;
} else {
// Something else is wrong. It may be one of many other states, but
// all we need
// to know is we can neither read nor write
mExternalStorageAvailable = mExternalStorageWriteable = false;
}
if (!((mExternalStorageAvailable) && (mExternalStorageWriteable))) {
Toast.makeText(context, "SD card not present", Toast.LENGTH_LONG)
.show();


}
return (mExternalStorageAvailable) && (mExternalStorageWriteable);
}

事实上,我使用了@fiXedd 的部分回复,它对我很有效:

  //Create Folder
File folder = new File(Environment.getExternalStorageDirectory().toString()+"/Aqeel/Images");
folder.mkdirs();


//Save the path as a string value
String extStorageDirectory = folder.toString();


//Create New file and name it Image2.PNG
File file = new File(extStorageDirectory, "Image2.PNG");

确保您使用的是 mkdirs ()而不是 mkdir ()来创建完整的路径

不要忘记确保您的文件/文件夹名称中没有特殊字符。我在使用变量设置文件夹名时遇到了“ :”

文件/文件夹名称中不允许有字符

”*/: < > ?\ |

您可能会发现这个代码在这种情况下有帮助。

下面的代码删除所有“ :”,并用“-”替换它们

//actualFileName = "qwerty:asdfg:zxcvb" say...


String[] tempFileNames;
String tempFileName ="";
String delimiter = ":";
tempFileNames = actualFileName.split(delimiter);
tempFileName = tempFileNames[0];
for (int j = 1; j < tempFileNames.length; j++){
tempFileName = tempFileName+" - "+tempFileNames[j];
}
File file = new File(Environment.getExternalStorageDirectory(), "/MyApp/"+ tempFileName+ "/");
if (!file.exists()) {
if (!file.mkdirs()) {
Log.e("TravellerLog :: ", "Problem creating Image folder");
}
}
File sdcard = Environment.getExternalStorageDirectory();
File f=new File(sdcard+"/dor");
f.mkdir();

这将在您的 sdcard 中创建一个名为 dor 的文件夹。 然后取出例如 filename.json 的文件,这是手动插入到 多尔文件夹中:

 File file1 = new File(sdcard,"/dor/fitness.json");
.......
.....

< use-mission android: name = “ android.permission. WRITE _ EXTERNAL _ STORAGE”/> < 使用权限 android: name = “ android.permission. WRITE _ EXTERNAL _ STORAGE”/>

别忘了在清单中添加代码

     //Create File object for Parent Directory
File wallpaperDir = new File(Environment.getExternalStorageDirectory().getAbsoluteFile() +File.separator + "wallpaper");
if (!wallpaperDir.exists()) {
wallpaperDir.mkdir();
}




File out = new File(wallpaperDir, wallpaperfile);
FileOutputStream outputStream = new FileOutputStream(out);

只是完成维杰的帖子..。


uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"

public static boolean createDirIfNotExists(String path) {
boolean ret = true;


File file = new File(Environment.getExternalStorageDirectory(), path);
if (!file.exists()) {
if (!file.mkdirs()) {
Log.e("TravellerLog :: ", "Problem creating Image folder");
ret = false;
}
}
return ret;
}

用法

createDirIfNotExists("mydir/"); //Create a directory sdcard/mydir
createDirIfNotExists("mydir/myfile") //Create a directory and a file in sdcard/mydir/myfile.txt

你可以检查错误

if(createDirIfNotExists("mydir/")){
//Directory Created Success
}
else{
//Error
}

我也面临同样的问题,Android 系统中有两种类型的权限:

  • 危险 (访问联系人,写入外部存储...)
  • Normal (普通权限由 Android 自动批准,而危险权限需要由 Android 用户批准。)

下面是在 Android 6.0中获得危险权限的策略

  • 检查您是否已获得许可
  • 如果您的应用程序已被授予权限,请继续并正常运行。
  • 如果您的应用程序还没有获得许可,请求用户批准
  • onRequestPermissionsResult中收听用户批准

我的情况是这样的: 我需要写入外部存储器。

首先,我检查我是否得到许可:

...
private static final int REQUEST_WRITE_STORAGE = 112;
...
boolean hasPermission = (ContextCompat.checkSelfPermission(activity,
Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED);
if (!hasPermission) {
ActivityCompat.requestPermissions(parentActivity,
new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},
REQUEST_WRITE_STORAGE);
}

然后检查用户的批准:

@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode)
{
case REQUEST_WRITE_STORAGE: {
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED)
{
//reload my activity with permission granted or use the features what required the permission
} else
{
Toast.makeText(parentActivity, "The app was not allowed to write to your storage. Hence, it cannot function properly. Please consider granting it this permission", Toast.LENGTH_LONG).show();
}
}
}
}
ivmage.setOnClickListener(new View.OnClickListener() {


@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i = new Intent(
Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);


startActivityForResult(i, RESULT_LOAD_IMAGE_ADD);


}
});`

这将使用您提供的文件夹名称在 sdcard 中创建文件夹。

File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Folder name");
if (!file.exists()) {
file.mkdirs();
}