---
title: "Feature: #45725 - Added recursive option to folder based file collections"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-45725"
source: "Changelog/7.4/Feature-45725-AddedRecursiveOptionToFolderBasedFileCollections.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #45725 - Added recursive option to folder based file collections

See [forge#45725](https://forge.typo3.org/issues/45725)

## Description

Folder based file collections have now an option to fetch all files recursively for
the given folder. The option is also available in the TypoScript Object `FILES`.

Usage:

```typoscript
filecollection = FILES
filecollection {
	folders = 1:images/
	folders.recursive = 1

	renderObj = IMAGE
	renderObj {
		file.import.data = file:current:uid
	}
}
```
