Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.54 KB

README.md

File metadata and controls

36 lines (25 loc) · 1.54 KB

deno_download_dir

tag Build Status license

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.