FilepublishUploadFolder

Version: - string  

Summary

Returns the path to the folder for uploaded files.

Settings

The value is based on the Folder input field in the Upload section for the paragraph module.

(Page > Paragraph > Module tab > Upload panel > Folder)

Remarks

An input field with the name Folder must be defined in the form and the value must be a path to a valid folder.

Examples

Outputting the template tag

@GetString("FilepublishUploadFolder")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("FilepublishUploadFolder"))) {
@* Tag has value, so let's do something useful here. *@
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Assign tag to a value for later use

@{
string storedTag = GetString("FilepublishUploadFolder");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@FilepublishUploadFolder-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@FilepublishUploadFolder)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX