# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
