> ## Documentation Index
> Fetch the complete documentation index at: https://eco-804c21df.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# FileStore

Eco Executor also has another alternative file system, except that the saving system doesn't use a **DataStoreService.**

## Save to FileStore

Saves the current editing code into the file store, naming the file if the first line in the editor has

```lua theme={null}
--!nameFile FileName
```

<Note>
  The `FileName` is a placeholder name, change to whatever you like.
</Note>

## Import from FileStore

Opens a FileStore UI to view the files saved to import to.

<img src="https://mintcdn.com/eco-804c21df/oSuUHeO2tZJTgnRf/images/Screenshot2025-02-15115032.png?fit=max&auto=format&n=oSuUHeO2tZJTgnRf&q=85&s=3881603014e929791c628c418d3df869" alt="Screenshot2025 02 15115032 Pn" width="1919" height="987" data-path="images/Screenshot2025-02-15115032.png" />

## Delete file in FileStore

<Warning>
  Deletes a file in the FileStore.
</Warning>

## Overwriting a file in FileStore

There's one more comment directive when saving the file into the FileStore

```lua theme={null}
--!overwriteFile FileName
```

When there is this code in the first line, it will find a file matching the `FileName` And when it does, it will overwrite the file content with the current one.
