How to get the file size and delete file in Lua?
问题 I have problem in getting the size of the file using Lua. I am creating a function method that if the file size of the file is 743 bytes , then the file will be deleted. Here is my code : 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