我只是想从二进制文件中读/写。我一直在关注本教程,它可以工作......除了它似乎正在将内容写入 txt 文件。我在测试的时候将文件命名为test.bin,但是记事本可以打开并正常显示,所以我不认为它实际上是一个二进制文件。我已经告诉它这是一个带有“wb”和“rb”的二进制文件,对吗?
if arg[1] == "write" then
local output = assert(io.open(arg[2], "wb"))
output:write(arg[3]) --3rd argument is written to the file.
assert(output:close())
elseif arg[1] == "read" then
local input = assert(io.open(arg[2], "rb"))
print(input:read(1)) --Should read one byte, not one char/int. Right?
end