Lua を使用してファイルのサイズを取得する際に問題があります。ファイルのファイルサイズが の場合、ファイル743 bytes
が削除される関数メソッドを作成しています。
これが私のコードです:
local getDLFile = function(fileToDL)
local path = system.pathForFile(fileToDL, system.DocumentsDirectory )
local myFile = io.open( path, "w+b" )
http.request{
url = "http://www.testfile.com/"..fileToDL,
sink = ltn12.sink.file(myFile),
}
-- i don't know what is the syntax
if myFile.size == 743 bytes then
myFile.delete
end
end
誰かが私のケースについて私を助けることができますか?