簡體   English   中英

是否可以在kitkat +上沒有文件選擇器的情況下寫入sd卡

[英]Is it possible to write to the sd card without a file picker on kitkat+

我想從SD卡根目錄刪除文件而沒有文件選擇器。

經過幾天的搜索,我還沒有找到一種方法。但是文件應用程序ES文件瀏覽器沒有問題,有人知道為什么嗎?

我發現最接近的東西是“ 如何使用為棒棒糖提供的新SD卡訪問API”? 但我必須使用文件選擇器

表現

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

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



<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:screenOrientation="portrait"
        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>

您必須提供一些源代碼,並告訴您您嘗試了什么。

檢查是否可以創建新的空文件:

    File newFile = new File("/storage/sdcard1/test");
    try {
        file.createNewFile();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

評論后編輯:
將此添加到清單上方的應用程序標記。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM