1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net/http/download.v

17 lines
420 B
V
Raw Normal View History

2020-01-23 23:04:46 +03:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module http
import os
2019-12-03 13:08:57 +03:00
pub fn download_file(url, out string) bool {
println('download file url=$url out=$out')
2019-12-30 07:42:23 +03:00
s := get(url) or {
2019-12-22 01:41:42 +03:00
return false
}
os.write_file(out, s.text)
return true
2019-12-22 01:41:42 +03:00
// download_file_with_progress(url, out, empty, empty)
}