懒人精灵 说明 / 示例
```language
function moapi:Wenjianguanli_文件下载(cwjnema,lBenDiLr)
lBenDiLr = getWorkPath() .. '/' .. cwjnema
local progress = function (pos)
toast("下载进度:"..pos)
end
local lurl = string.format("http://%s/Wenjianguanli/API.utf-8?api=文件管理_下载文件&nema=%s&tkmy=%s&wjnema=%s",self.IP,self.nema,self.tkmy,cwjnema);
if downloadFile(lurl, lBenDiLr, progress) then
return true
end
return false
end
```