v0.1.0
Returns the path to the user's download directory.
Repository
Current version released
6 years ago
Versions
deno_download_dir
Returns the path to the user’s download directory.
The returned value depends on the operating system and is either a string,
containing a value from the following table, or null.
| Platform | Value | Example |
|---|---|---|
| Linux | XDG_DOWNLOAD_DIR |
/home/justjavac/Downloads |
| macOS | $HOME/Downloads |
/Users/justjavac/Downloads |
| Windows | {FOLDERID_Downloads} |
C:\Users\justjavac\Downloads |
Usage
Requires allow-env permission.
Returns null if there is no applicable directory or if any other error occurs.
import downloadDir from "https://deno.land/x/download_dir/mod.ts";
downloadDir();
// Lin: "/home/justjavac/Downloads"
// Mac: "/Users/justjavac/Downloads"
// Win: "C:\Users\justjavac\Downloads"License
deno_download_dir is released under the MIT License. See the bundled LICENSE file for details.