android 手机中创建文件夹

时间:2022-04-23 12:30:29

在手机中创建文件夹需要引入如下类:

1.android.os.Environment;

2.java.io.File;

第一个类用来获取手机内SD卡或者存储空间的路径,第二个类用来创建文件

创建文件夹的代码如下:

String ExternalStorageDirectoryPath = Environment.getExternalStorageDirectory().getAbsolutePath();
String photosPath = ExternalStorageDirectoryPath+"/test";

上面代码获取的是手机内的存储路径,如果手机加了SD卡,那么得到的ExternalStorageDirectoryPath即是内存卡的路径,如果没有SD卡,则获取的是手机自己的存储空间路径。

然后就可以创建文件夹:

   File photosFile=new File(photosPath);
if(!photosFile.exists()){
photosFile.mkdirs();
System.out.print("文件夹已经创建");
}else{ <pre name="code" class="java"> System.out.print<span style="font-family: Arial, Helvetica, sans-serif;">(photosPath+"文件已经存在");</span>
}

 

上述代码可以在第一次启动android程序时创建文件夹,然后以后启动时检测文件夹是否存在。

如果创建文件夹失败,可能是没有加权限的原因

在AndroidMainifest.xml中加入下面代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hujiaxuan.gallary" >

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MyActivity"
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>
<!-- 在SDCard中创建与删除文件权限 -->
<span style="color:#3333ff;"> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
<!-- 往SDCard写入数据权限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /></span>
</manifest>