Closed cofiem closed 1 year ago
I would like to see user_downloads_dir added, similar to user_documents_dir.
user_downloads_dir
user_documents_dir
CSIDL_DOWNLOADS
%USERPROFILE%\Downloads
XDG_DOWNLOAD_DIR
$HOME/Downloads
os.path.expanduser("~/Downloads")
context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
/storage/emulated/0/Downloads
I'm happy to create a PR if this is acceptable.
Works for me 👍
I would like to see
user_downloads_dir
added, similar touser_documents_dir
.CSIDL_DOWNLOADS
- e.g.%USERPROFILE%\Downloads
XDG_DOWNLOAD_DIR
- e.g.$HOME/Downloads
os.path.expanduser("~/Downloads")
context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
- e.g./storage/emulated/0/Downloads
I'm happy to create a PR if this is acceptable.