我希望从上传到其中的网址获取文件的大小。
我有一张照片的网址。 我希望使用Lua中的网址来获取它的大小,但我不知道如何
感谢。
答案 0 :(得分:1)
function get_resource_size(url)
local pipe = io.popen('wget -S --spider --no-check-certificate "'..url..'" 2>&1')
local size = pipe:read"*a":match"Content%-Length: (%d+)"
pipe:close()
return size and tonumber(size)
end
print(get_resource_size(
"https://www.gravatar.com/avatar/282ad8d2c96e9b753bde22ac6ca0918b?s=32&d=identicon&r=PG"
))
您的头像大小为2074字节