Lines Matching +full:working +full:- +full:directory
12 - `FATFS <http://elm-chan.org/fsw/ff/00index_e.html>`__
13 - STDIO (Linux and Windows using C standard function .e.g ``fopen``, ``fread``)
14 - POSIX (Linux and Windows using POSIX function .e.g ``open``, ``read``)
15 - WIN32 (Windows using Win32 API function .e.g ``CreateFileA``, ``ReadFile``)
16 - MEMFS (read a file from a memory buffer)
17 - LITTLEFS (a little fail-safe filesystem designed for microcontrollers)
18 - Arduino ESP LITTLEFS (a little fail-safe filesystem designed for Arduino ESP)
19 - Arduino SD (allows for reading from and writing to SD cards)
33 Working with common prefixes
45 The **working directory** can be set with ``LV_FS_..._PATH``. E.g.
46 ``"/home/joe/projects/"`` The actual file/directory paths will be
56 To use the memory-mapped file emulation an ``lv_fs_path_ex_t`` object must be
60 .. code-block:: c