Version

UploadedFilesDirectory Property

Gets or sets a virtual, relative, or absolute pathname of the directory where all files are uploaded.
Syntax
'Declaration
 
Public Property UploadedFilesDirectory As String
public string UploadedFilesDirectory {get; set;}

Property Value

A string representing the virtual, relative, or absolute pathname of the directory where all files uploaded using the WebHtmlEditor are stored. The default value is "/ig_common/upload".
Remarks

This property impacts all ToolbarUploadButton controls on the toolbar. Each ToolbarUploadButton has a ToolbarUploadButton.Upload property representing the upload dialog that will be displayed to the user when the button is clicked. The user can use this dialog to upload files. This upload dialog, by default, will upload files to the directory specified by this property. If you have multiple ToolbarUploadButton controls on the toolbar, they will all upload to this directory by default. If you want to change this so multiple ToolbarUploadButton controls upload to different directories, you must do this on the ToolbarUploadButton level instead of setting this property, which acts globally.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also