I/O operations

File manipulation in Lua is done on either implicit or explicit file descriptors. We will focus on using explicit file descriptors to perform most of the operations.

Note

If we work with implicit file descriptors by default, Lua will use stdin and stdout respectively. Alternatively, we can set the output and input descriptors with io.output and io.input, respectively.

Modes

File modes supported in Lua are the following:

File mode

Description

r

This is read mode.

w

This is write mode.

a

This is append mode.

r+

This is update mode. It preserves existing data.

w+

This is update mode. It deletes any existing data.

a+

This is append update mode. It preserves existing data and only allows appending at the end of the file.

Opening ...

Get Mastering the Nmap Scripting Engine now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.