mode | 作用 |
---|---|
r | 读,文件不存在则报错 |
w | 写,若文件存在则覆盖重写,若文件不存在则新建 |
a | 写,若文件不存在,则新建;如果文件存在,则在文件尾追加要写的内容 |
r | 读写,文件不存在则报错 |
w | 读写,若文件存在则覆盖重写,若文件不存在则新建 |
a | 读写,若文件不存在,则新建;如果文件存在,则在文件尾追加要写的内容 |
b | 以二进制模式打开文件 |
file=io.open("/test.txt","r")
io.input(file)-- 设置默认输入文件
print(io.read())
io.close()
file=io.open("/test.txt","a")
io.output(file)-- 设置默认输出文件
io.write("last row!")
io.close()