List
Tags, loops and code examples available for the listing of files + upload control.
Available tags
FilepublishFolderList
Returns the path to the current subfolder.
RAZOR
@GetString("FilepublishFolderList")
Available loops
FilesLoop
Returns the list of folders within a folder set via the module paragraph settings.
RAZOR
@foreach (LoopItem item in GetLoop("FilesLoop")){
<p>@item.GetValue("TagName")</p>
}
FoldersLoop
Returns the list of folders within a folder set via the module paragraph settings.
RAZOR
@foreach (LoopItem item in GetLoop("FoldersLoop")){
<p>@item.GetValue("TagName")</p>
}