On this page
Table of contents
Getting Started
Installation
Usage
What's new
Migration Guide
Basic Syntax
Data Types
Expressions
Variables
Conditions
Commands
Arrays
Loops
Functions
Importing
Advanced Syntax
As Cast
Builtins
Type Condition
Compiler Flags
Standard Library
Array
Date
Environment
FileSystem
HTTP
Math
Text
Contributing
How to
Guide
Compiler structure
Amber by Example
Backup Rotator
ShellCheck tester
Ubuntu Updater
Bot Detector
LSP Installer
HTTP
file_download
pub fun file_download(url: Text, path: Text): Null?
Downloads a file from a given URL and saves it to a specified path using available command-line tools.
It checks for the availability of common command-line tools (curl, wget, and aria2c, in order) and uses the first available tool to perform the download.
If none of the tools are available, the function fails.
Usage
import { file_download } from "std/http"
file_download("https://example.com/file.zip", "/tmp/file.zip")
On this page
Table of contents
Getting Started
Installation
Usage
What's new
Migration Guide
Basic Syntax
Data Types
Expressions
Variables
Conditions
Commands
Arrays
Loops
Functions
Importing
Advanced Syntax
As Cast
Builtins
Type Condition
Compiler Flags
Standard Library
Array
Date
Environment
FileSystem
HTTP
Math
Text
Contributing
How to
Guide
Compiler structure
Amber by Example
Backup Rotator
ShellCheck tester
Ubuntu Updater
Bot Detector
LSP Installer