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 중국어 웹사이트의 기타 관련 기사를 참조하세요!