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 |
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"
deno_download_dir is released under the MIT License. See the bundled LICENSE file for details.