2016-01-05 02:21:19 +01:00
# file Module
2016-03-05 10:47:01 +01:00
| Since | Origin / Contributor | Maintainer | Source |
| :----- | :-------------------- | :---------- | :------ |
| 2014-12-22 | [Zeroday ](https://github.com/funshine ) | [Zeroday ](https://github.com/funshine ) | [file.c ](../../../app/modules/file.c )|
2016-01-05 02:21:19 +01:00
The file module provides access to the file system and its individual files.
2016-09-05 20:17:13 +02:00
The file system is a flat file system, with no notion of subdirectories/folders.
2016-01-05 02:21:19 +01:00
2016-09-05 20:17:13 +02:00
Besides the SPIFFS file system on internal flash, this module can also access FAT partitions on an external SD card is [FatFS is enabled ](../sdcard.md ).
```lua
-- open file in flash:
if file.open("init.lua") then
print(file.read())
file.close()
end
-- or with full pathspec
file.open("/FLASH/init.lua")
-- open file on SD card
if file.open("/SD0/somefile.txt") then
print(file.read())
file.close()
end
```
## file.chdir()
Change current directory (and drive). This will be used when no drive/directory is prepended to filenames.
Current directory defaults to the root of internal SPIFFS (`/FLASH`) after system start.
#### Syntax
`file.chdir(dir)`
#### Parameters
`dir` directory name - `/FLASH` , `/SD0` , `/SD1` , etc.
#### Returns
`true` on success, `false` otherwise
2016-02-13 23:37:04 +01:00
## file.exists()
Determines whether the specified file exists.
#### Syntax
`file.exists(filename)`
#### Parameters
- `filename` file to check
#### Returns
true of the file exists (even if 0 bytes in size), and false if it does not exist
#### Example
```lua
files = file.list()
if files["device.config"] then
print("Config file exists")
end
if file.exists("device.config") then
print("Config file exists")
end
```
#### See also
[`file.list()` ](#filelist )
2016-01-10 16:04:23 +01:00
## file.format()
2016-01-07 00:33:52 +01:00
2016-01-10 16:04:23 +01:00
Format the file system. Completely erases any existing file system and writes a new one. Depending on the size of the flash chip in the ESP, this may take several seconds.
2016-01-05 02:21:19 +01:00
2016-09-05 20:17:13 +02:00
Not supported for SD cards.
2016-01-10 16:04:23 +01:00
#### Syntax
`file.format()`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
none
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
2016-01-05 02:21:19 +01:00
`nil`
2016-01-10 16:04:23 +01:00
#### See also
[`file.remove()` ](#fileremove )
2016-01-05 02:21:19 +01:00
2016-01-12 07:53:45 +01:00
## file.fscfg ()
Returns the flash address and physical size of the file system area, in bytes.
2016-09-05 20:17:13 +02:00
Not supported for SD cards.
2016-01-12 07:53:45 +01:00
#### Syntax
`file.fscfg()`
#### Parameters
none
#### Returns
- `flash address` (number)
- `size` (number)
#### Example
```lua
print(string.format("0x%x", file.fscfg()))
```
2016-01-10 16:04:23 +01:00
## file.fsinfo()
2016-01-05 02:21:19 +01:00
2016-09-05 20:17:13 +02:00
Return size information for the file system. The unit is Byte for SPIFFS and kByte for FatFS.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
`file.fsinfo()`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
none
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
- `remaining` (number)
- `used` (number)
- `total` (number)
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Example
2016-01-05 02:21:19 +01:00
```lua
2016-01-10 16:04:23 +01:00
-- get file system info
remaining, used, total=file.fsinfo()
2016-09-05 20:17:13 +02:00
print("\nFile system info:\nTotal : "..total.." (k)Bytes\nUsed : "..used.." (k)Bytes\nRemain: "..remaining.." (k)Bytes\n")
2016-01-05 02:21:19 +01:00
```
2016-01-10 16:04:23 +01:00
## file.list()
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
Lists all files in the file system.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
`file.list()`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
none
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
a lua table which contains the {file name: file size} pairs
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Example
2016-01-05 02:21:19 +01:00
```lua
2016-01-10 16:04:23 +01:00
l = file.list();
for k,v in pairs(l) do
print("name:"..k..", size:"..v)
end
2016-01-05 02:21:19 +01:00
```
2016-01-10 16:04:23 +01:00
2016-09-05 20:17:13 +02:00
## file.mount()
Mounts a FatFs volume on SD card.
Not supported for internal flash.
#### Syntax
`file.mount(ldrv[, pin])`
#### Parameters
- `ldrv` name of the logical drive, `SD0:` , `SD1:` , etc.
- `pin` 1~12, IO index for SS/CS, defaults to 8 if omitted.
#### Returns
Volume object
#### Example
```lua
vol = file.mount("SD0:")
vol:umount()
```
## file.on()
Registers callback functions.
Trigger events are:
- `rtc` deliver current date & time to the file system. Function is expected to return a table containing the fields `year` , `mon` , `day` , `hour` , `min` , `sec` of current date and time. Not supported for internal flash.
#### Syntax
`file.on(event[, function()])`
#### Parameters
- `event` string
- `function()` callback function. Unregisters the callback if `function()` is omitted.
#### Returns
`nil`
#### Example
```lua
sntp.sync(server_ip,
function()
print("sntp time sync ok")
file.on("rtc",
function()
return rtctime.epoch2cal(rtctime.get())
end)
end)
```
#### See also
[`rtctime.epoch2cal()` ](rtctime.md#rtctimepoch2cal )
2016-01-05 02:21:19 +01:00
## file.open()
Opens a file for access, potentially creating it (for write modes).
When done with the file, it must be closed using `file.close()` .
2016-01-10 16:04:23 +01:00
#### Syntax
2016-01-05 02:21:19 +01:00
`file.open(filename, mode)`
2016-01-10 16:04:23 +01:00
#### Parameters
- `filename` file to be opened, directories are not supported
- `mode` :
- "r": read mode (the default)
- "w": write mode
- "a": append mode
- "r+": update mode, all previous data is preserved
- "w+": update mode, all previous data is erased
2016-01-05 02:21:19 +01:00
- "a+": append update mode, previous data is preserved, writing is only allowed at the end of file
2016-01-10 16:04:23 +01:00
#### Returns
2016-11-08 21:02:51 +01:00
file object if file opened ok. `nil` if file not opened, or not exists (read modes).
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-01-10 16:04:23 +01:00
-- open 'init.lua', print the first line.
2016-09-05 20:17:13 +02:00
if file.open("init.lua", "r") then
print(file.readline())
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-11-08 21:02:51 +01:00
#### Example (object model)
```lua
-- open 'init.lua', print the first line.
fd = file.open("init.lua", "r")
if fd then
print(fd:readline())
fd:close(); fd = nil
end
```
2016-01-10 16:04:23 +01:00
#### See also
- [`file.close()` ](#fileclose )
- [`file.readline()` ](#filereadline )
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
## file.remove()
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
Remove a file from the file system. The file must not be currently open.
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
###Syntax
`file.remove(filename)`
2016-10-28 16:32:12 +02:00
2016-11-08 21:02:51 +01:00
#### Parameters
`filename` file to remove
#### Returns
`nil`
#### Example
```lua
-- remove "foo.lua" from file system.
file.remove("foo.lua")
```
#### See also
[`file.open()` ](#fileopen )
## file.rename()
Renames a file. If a file is currently open, it will be closed first.
2016-10-28 16:32:12 +02:00
2016-01-10 16:04:23 +01:00
#### Syntax
2016-11-08 21:02:51 +01:00
`file.rename(oldname, newname)`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
2016-11-08 21:02:51 +01:00
- `oldname` old file name
- `newname` new file name
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
2016-11-08 21:02:51 +01:00
`true` on success, `false` on error.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Example
2016-11-08 21:02:51 +01:00
2016-01-05 02:21:19 +01:00
```lua
2016-11-08 21:02:51 +01:00
-- rename file 'temp.lua' to 'init.lua'.
file.rename("temp.lua","init.lua")
```
# File access functions
The `file` module provides several functions to access the content of a file after it has been opened with [`file.open()` ](#fileopen ). They can be used as part of a basic model or an object model:
## Basic model
In the basic model there is max one file opened at a time. The file access functions operate on this file per default. If another file is opened, the previous default file needs to be closed beforehand.
```lua
-- open 'init.lua', print the first line.
2016-09-05 20:17:13 +02:00
if file.open("init.lua", "r") then
2016-11-08 21:02:51 +01:00
print(file.readline())
2016-09-05 20:17:13 +02:00
file.close()
end
2016-11-08 21:02:51 +01:00
```
2016-01-10 16:04:23 +01:00
2016-11-08 21:02:51 +01:00
## Object model
Files are represented by file objects which are created by `file.open()` . File access functions are available as methods of this object, and multiple file objects can coexist.
```lua
src = file.open("init.lua", "r")
if src then
dest = file.open("copy.lua", "w")
if dest then
local line
repeat
line = src:read()
if line then
dest:write(line)
end
until line == nil
dest:close(); dest = nil
end
src:close(); dest = nil
2016-09-05 20:17:13 +02:00
end
2016-01-05 02:21:19 +01:00
```
2016-01-07 00:33:52 +01:00
2016-11-08 21:02:51 +01:00
!!! Attention
It is recommended to use only one single model within the application. Concurrent use of both models can yield unpredictable behavior: Closing the default file from basic model will also close the correspoding file object. Closing a file from object model will also close the default file if they are the same file.
!!! Note
The maximum number of open files on SPIFFS is determined at compile time by `SPIFFS_MAX_OPEN_FILES` in `user_config.h` .
## file.close()
## file.obj:close()
Closes the open file, if any.
#### Syntax
`file.close()`
`fd:close()`
#### Parameters
none
#### Returns
`nil`
2016-01-10 16:04:23 +01:00
#### See also
2016-11-08 21:02:51 +01:00
[`file.open()` ](#fileopen )
2016-01-10 16:04:23 +01:00
2016-11-08 21:02:51 +01:00
## file.flush()
## file.obj:flush()
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
Flushes any pending writes to the file system, ensuring no data is lost on a restart. Closing the open file using [`file.close()` / `fd:close()` ](#fileclose ) performs an implicit flush as well.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
2016-11-08 21:02:51 +01:00
`file.flush()`
`fd:flush()`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
none
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
2016-11-08 21:02:51 +01:00
`nil`
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-11-08 21:02:51 +01:00
-- open 'init.lua' in 'a+' mode
if file.open("init.lua", "a+") then
-- write 'foo bar' to the end of the file
file.write('foo bar')
file.flush()
-- write 'baz' too
file.write('baz')
2016-09-05 20:17:13 +02:00
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-11-08 21:02:51 +01:00
2016-01-10 16:04:23 +01:00
#### See also
2016-11-08 21:02:51 +01:00
[`file.close()` / `file.obj:close()` ](#fileclose )
2016-01-07 00:33:52 +01:00
2016-11-08 21:02:51 +01:00
## file.read()
## file.obj:read()
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
Read content from the open file.
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
!!! note
The function temporarily allocates 2 * (number of requested bytes) on the heap for buffering and processing the read data. Default chunk size (`FILE_READ_CHUNK`) is 1024 bytes and is regarded to be safe. Pushing this by 4x or more can cause heap overflows depending on the application. Consider this when selecting a value for parameter `n_or_char` .
#### Syntax
`file.read([n_or_char])`
`fd:read([n_or_char])`
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Parameters
2016-11-08 21:02:51 +01:00
- `n_or_char` :
- if nothing passed in, then read up to `FILE_READ_CHUNK` bytes or the entire file (whichever is smaller).
- if passed a number `n` , then read up to `n` bytes or the entire file (whichever is smaller).
- if passed a string containing the single character `char` , then read until `char` appears next in the file, `FILE_READ_CHUNK` bytes have been read, or EOF is reached.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
2016-11-08 21:02:51 +01:00
File content as a string, or nil when EOF
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
```lua
-- print the first line of 'init.lua'
if file.open("init.lua", "r") then
print(file.read('\n'))
file.close()
end
```
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (object model)
2016-01-05 02:21:19 +01:00
```lua
2016-11-08 21:02:51 +01:00
-- print the first 5 bytes of 'init.lua'
fd = file.open("init.lua", "r")
if fd then
print(fd:read(5))
fd:close(); fd = nil
end
2016-01-05 02:21:19 +01:00
```
2016-11-08 21:02:51 +01:00
2016-01-10 16:04:23 +01:00
#### See also
2016-11-08 21:02:51 +01:00
- [`file.open()` ](#fileopen )
- [`file.readline()` / `file.obj:readline()` ](#filereadline )
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
## file.readline()
## file.obj:readline()
2016-01-07 00:33:52 +01:00
2016-11-08 21:02:51 +01:00
Read the next line from the open file. Lines are defined as zero or more bytes ending with a EOL ('\n') byte. If the next line is longer than 1024, this function only returns the first 1024 bytes.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
2016-11-08 21:02:51 +01:00
`file.readline()`
`fd:readline()`
2016-01-10 16:04:23 +01:00
#### Parameters
2016-11-08 21:02:51 +01:00
none
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
2016-11-08 21:02:51 +01:00
File content in string, line by line, including EOL('\n'). Return `nil` when EOF.
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-11-08 21:02:51 +01:00
-- print the first line of 'init.lua'
if file.open("init.lua", "r") then
print(file.readline())
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-11-08 21:02:51 +01:00
#### See also
- [`file.open()` ](#fileopen )
- [`file.close()` / `file.obj:close()` ](#fileclose )
- [`file.read()` / `file.obj:read()` ](#fileread )
2016-01-10 16:04:23 +01:00
## file.seek()
2016-11-08 21:02:51 +01:00
## file.obj:seek()
2016-01-10 16:04:23 +01:00
Sets and gets the file position, measured from the beginning of the file, to the position given by offset plus a base specified by the string whence.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
`file.seek([whence [, offset]])`
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
`fd:seek([whence [, offset]])`
2016-01-10 16:04:23 +01:00
#### Parameters
- `whence`
- "set": base is position 0 (beginning of the file)
- "cur": base is current position (default value)
- "end": base is end of file
- `offset` default 0
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
If no parameters are given, the function simply returns the current file offset.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
the resulting file position, or `nil` on error
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-09-05 20:17:13 +02:00
if file.open("init.lua", "r") then
-- skip the first 5 bytes of the file
file.seek("set", 5)
print(file.readline())
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-01-10 16:04:23 +01:00
#### See also
[`file.open()` ](#fileopen )
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
## file.write()
2016-11-08 21:02:51 +01:00
## file.obj:write()
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
Write a string to the open file.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
`file.write(string)`
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
`fd:write(string)`
2016-01-10 16:04:23 +01:00
#### Parameters
`string` content to be write to file
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
`true` if the write is ok, `nil` on error
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-01-10 16:04:23 +01:00
-- open 'init.lua' in 'a+' mode
2016-09-05 20:17:13 +02:00
if file.open("init.lua", "a+") then
-- write 'foo bar' to the end of the file
file.write('foo bar')
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-01-07 00:33:52 +01:00
2016-11-08 21:02:51 +01:00
#### Example (object model)
```lua
-- open 'init.lua' in 'a+' mode
fd = file.open("init.lua", "a+")
if fd then
-- write 'foo bar' to the end of the file
fd:write('foo bar')
fd:close()
end
```
2016-01-10 16:04:23 +01:00
#### See also
- [`file.open()` ](#fileopen )
2016-11-08 21:02:51 +01:00
- [`file.writeline()` / `file.obj:writeline()` ](#filewriteline )
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
## file.writeline()
2016-11-08 21:02:51 +01:00
## file.obj:writeline()
2016-01-10 16:04:23 +01:00
Write a string to the open file and append '\n' at the end.
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Syntax
`file.writeline(string)`
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
`fd:writeline(string)`
2016-01-10 16:04:23 +01:00
#### Parameters
`string` content to be write to file
2016-01-05 02:21:19 +01:00
2016-01-10 16:04:23 +01:00
#### Returns
`true` if write ok, `nil` on error
2016-01-05 02:21:19 +01:00
2016-11-08 21:02:51 +01:00
#### Example (basic model)
2016-01-05 02:21:19 +01:00
```lua
2016-01-10 16:04:23 +01:00
-- open 'init.lua' in 'a+' mode
2016-09-05 20:17:13 +02:00
if file.open("init.lua", "a+") then
-- write 'foo bar' to the end of the file
file.writeline('foo bar')
file.close()
end
2016-01-05 02:21:19 +01:00
```
2016-01-07 00:33:52 +01:00
2016-01-10 16:04:23 +01:00
#### See also
- [`file.open()` ](#fileopen )
2016-11-08 21:02:51 +01:00
- [`file.readline()` / `file.obj:readline()` ](#filereadline )