Ask Your Question
0

How do you make a folder within the Downloads or Documents directory using Android API 33?

asked 2023-07-03 20:58:55 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-07-03 21:07:02 +0000

lalupa gravatar image

You can make a folder within the Downloads or Documents directory using the following code:

File folder = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS), "FolderName");
if (!folder.exists()) {
   folder.mkdir();
}

This code creates a new file object with the specified folder name ("FolderName") within the Downloads directory. The mkdir() method then creates the folder if it does not already exist.

Similarly, for the Documents directory, replace Environment.DIRECTORY_DOWNLOADS with Environment.DIRECTORY_DOCUMENTS in the getExternalStoragePublicDirectory() method.

File folder = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS), "FolderName");
if (!folder.exists()) {
   folder.mkdir();
}
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-03 20:58:55 +0000

Seen: 12 times

Last updated: Jul 03 '23