在 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中文网其他相关文章!