> For the complete documentation index, see [llms.txt](https://docs.movebot.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movebot.io/using-movebot/scan-and-discovery/searching-scan-results.md).

# Searching Scan Results

Movebot provides a bunch of standardized reports, but it is also possible to create your own reports using the search console under the files/folders view and search for files or folders.

&#x20;

Under **Files/Folders** you can see all files and folders discovered in the scan. You can then use the filter to search for files/folders to find specific items.&#x20;

You can manually use search expressions as below.

| {files.filename == "file1.txt"} | Match files with the filename "file1.txt"                         |
| ------------------------------- | ----------------------------------------------------------------- |
| {files.is\_dir == true}         | Only match directories                                            |
| {files.depth > 10}              | Match files/directories that are greater than 10 directories deep |
| {files.depth < 10}              | Match files/directories that are less than 10 directories deep    |
| {files.size < 1024}             | Match files smaller than 1KB                                      |
| {files.size > 1024}             | Match files larger than 1KB                                       |
| {files.extension == "png"}      | Match files with the extension .png                               |
| {files.modtime > 1602629811}    | Match files modified after the unix timestamp provided            |
| {files.modtime < 1602629811}    | Match files modified before the unix timestamp provided           |

&#x20;

You can join queries together with an "and" operator:

```
{files.modtime > 1602629811} and {files.size > 1024}
```

Spaces and character cases are important and currently there is limited error handling.

&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.movebot.io/using-movebot/scan-and-discovery/searching-scan-results.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
