Android で SD カードの特定のフォルダーに書き込む
提供されたコード スニペットを使用してファイルをダウンロードしてルートに書き込む場合SD カードのディレクトリにある場合は、ファイルを書き込む特定のフォルダーを指定することもできます。これは、ディレクトリを作成し、そのディレクトリにファイルを書き込むようにコードを変更することで実現できます。
File sdCard = Environment.getExternalStorageDirectory(); // Get the SD card root directory File dir = new File (sdCard.getAbsolutePath() + "/dir1/dir2"); // Create a directory with the desired path dir.mkdirs(); // Create the directory if it doesn't exist File file = new File(dir, "filename"); // Create a new file in the directory FileOutputStream f = new FileOutputStream(file); // Open the file for writing ...
この変更により、ファイルは、ファイルのルート ディレクトリではなく、指定されたフォルダーに書き込まれます。 SDカード。
以上がAndroid SD カードの特定のディレクトリにファイルを書き込む方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。