是否可以在没有 kitkat+ 文件选择器的情况下写入 sd 卡

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

我想在没有文件选择器的情况下从 SD 卡根目录中删除文件。

找了几天,没找到办法 this.But files apps ES file explorer 没有问题,有谁知道这是为什么吗?

我找到的最接近的是这个 How to use the new SD-Card access API presented for Lollipop? 但我必须使用文件选择器

清单

<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"/>