Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下は、サーバーから画像をダウンロードし、フォルダ内のSDカードに保存するために使用しているコードで、何度も何度も例外が発生します
java.io.IOException: Not a directory
そのために私を助けてください。
アプリに書き込み権限を追加する
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
次に、ディレクトリを作成してみます
File SDCardRoot = new File(Environment.getExternalStorageDirectory(), type); if (!SDCardRoot.exists()) { SDCardRoot.mkdir(); }