文件夹创建为文件

时间:2013-01-24 15:52:50

标签: android android-file

ConfUSED:那些对某个问题投下来的人,你能不能添加一些评论,为什么????我想说坏话,只是不想被禁止。

我有一个应用程序,我想在sdCard中有一个文件夹,所以用户可以添加一些东西,然后我可以在应用程序内使用它。我使用以下代码创建一个文件夹:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        //External storage
        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;
            Log.v("Storage","ablo to read and write");
            //create Beatss folder
            File direct = new File(android.os.Environment.getExternalStorageDirectory().getPath() + "/Beatss");
            Log.v("Storage",android.os.Environment.getExternalStorageDirectory().getPath() + "/Beatss");
                boolean success = true;
                if (!direct.exists()) {
                    success = direct.mkdirs();

                }
                if (success) {
                    // Do something on success
                    Log.v("Storage","Folder has been created");

                } else {
                    // Do something else on failure 

                }

        } else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
            // We can only read the media
            mExternalStorageAvailable = true;
            mExternalStorageWriteable = false;
            Log.v("Storage","ablo to read only");
        } else {

            mExternalStorageAvailable = mExternalStorageWriteable = false;
            Log.v("Storage","no access");               
        }

我可以在DDMS中看到已创建文件夹但是当我浏览WindowsExplorer时,我有一个文件而不是文件夹。那么,如何创建文件夹?

UPD1:所以,即使我在这个文件夹中创建了一些东西,我仍然将它作为Windows资源管理器中的文件,但在DDMS中我可以看到我有一个文件夹,里面有另一个文件夹。那么,这里有什么问题?

UPD2:所以,在logcat中打破direct行以查看是否存在真实路径:

01-24 21:14:04.368: V/Storage(12116): /mnt/sdcard/Beatss/

所以有......

UPD3:到目前为止,我无法将所有代码显示为264行。所有这个文件夹创建都发生在mainActivity的onCreate上。 manifestFile看起来像这样:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.test
android:versionCode="1"
android:versionName="1.0"
android:installLocation="auto" >

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="16" />
<supports-screens         
              android:smallScreens= "true"
              android:normalScreens="true"
              android:largeScreens="true"
              android:xlargeScreens="false"                  
/>


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

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:screenOrientation="portrait"
    >
    <activity
        android:name=".Main"
        android:label="@string/app_name"
        android:screenOrientation="portrait" 
        android:clearTaskOnLaunch="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>        
    <activity android:name=".MainActivity"
              android:label="@string/app_name"
              android:screenOrientation="portrait">
    </activity>
    <activity android:name=".SupportScreen"
              android:label="@string/app_name"
              android:screenOrientation="portrait">
    </activity>
        <activity android:name="com.tapjoy.TJCOffersWebView" android:configChanges="keyboardHidden|orientation" />
        <activity android:name="com.tapjoy.TapjoyFullScreenAdWebView" android:configChanges="keyboardHidden|orientation" />
        <activity android:name="com.tapjoy.TapjoyDailyRewardAdWebView" android:configChanges="keyboardHidden|orientation" />
        <activity android:name="com.tapjoy.TapjoyVideoView" android:configChanges="keyboardHidden|orientation" />

</application>
</manifest>

更新代码upper:

Logcat说:

01-24 21:19:21.068: V/Storage(14088): /mnt/sdcard/Beatss/
01-24 21:19:21.138: V/Storage(14088): Folder has been created

4 个答案:

答案 0 :(得分:2)

试试吧

String PATH = Environment.getExternalStorageDirectory()+"/Folder123/";
            File file = new File(PATH);
            file.mkdirs();

答案 1 :(得分:0)

这是我在制作中的应用程序的代码片段....

if (spaceAvailable > spaceRequired) {
        databasePath = new File(settingsDatabasePath, GC.APP_DIRECTORY);
        databasePath.mkdirs();
        settingsDatabasePath = databasePath.getPath().toString();
    }

settingsDatabasePath在首次安装应用程序时确定。它可以是外部存储器或内部存储器,具体取决于设备是否具有外部存储器。此外,在此片段之前,已确定尚未创建GC.APP_DIRECTORY(GC类中的字符串常量)。此外,在此片段之后,进行测试以确保已创建目录,它是可写的,并且它是一个目录。数据库和文件在app目录中创建,以防止根目录中的“splattering”文件。

注意:settingsDatabasePath是故意写的。如果您复制代码,则可能不想进行重写。

答案 2 :(得分:0)

试试这个:

String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
    File folder = new File(extStorageDirectory, "DIR_NAME");
    folder.mkdir();
    File file = new File(folder, "Sample.txt");
    try {
        file.createNewFile();
    } catch (IOException e1) {
        e1.printStackTrace();
    }

答案 3 :(得分:0)

您的代码没有任何问题。我在我的所有应用程序上使用相同的代码,它们工作正常。 我复制/粘贴你的代码,效果很好。可以在我的Windows计算机上查看“Beatss”文件夹。您的SD卡必须有问题。您需要检查错误或尝试其他SD卡。

在Windows中右键单击SD卡,然后选择属性&gt;工具&gt;错误检查,然后单击“立即检查”。如果没有错误,请尝试另一张卡。如果没有,那么在另一台设备上全部尝试你的apk,看看它是否在那里工作。