2022-06-14 06:12:03 +08:00
|
|
|
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
SPDX-License-Identifier: curl
|
2016-11-16 21:20:36 +08:00
|
|
|
Long: max-filesize
|
|
|
|
Arg: <bytes>
|
|
|
|
Help: Maximum file size to download
|
2021-07-23 14:56:52 +08:00
|
|
|
Protocols: FTP HTTP MQTT
|
2016-11-16 21:20:36 +08:00
|
|
|
See-also: limit-rate
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: connection
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --max-filesize 100K $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 7.10.8
|
2016-11-16 21:20:36 +08:00
|
|
|
---
|
|
|
|
Specify the maximum size (in bytes) of a file to download. If the file
|
|
|
|
requested is larger than this value, the transfer will not start and curl will
|
|
|
|
return with exit code 63.
|
|
|
|
|
2017-12-18 06:26:10 +08:00
|
|
|
A size modifier may be used. For example, Appending 'k' or 'K' will count the
|
|
|
|
number as kilobytes, 'm' or 'M' makes it megabytes, while 'g' or 'G' makes it
|
|
|
|
gigabytes. Examples: 200K, 3m and 1G. (Added in 7.58.0)
|
|
|
|
|
2021-07-23 14:56:52 +08:00
|
|
|
**NOTE**: The file size is not always known prior to download, and for such
|
|
|
|
files this option has no effect even if the file transfer ends up being larger
|
|
|
|
than this given limit.
|