Returns the file path where the file will be stored prior to upload to services such as Amazon S3. For the standard file system provider return the real upload location, as there will not be any secondary uploads.

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public string GetUploadFilePath(
	string folderPath,
	string filePrefix,
	string fileName
)
Visual Basic
Public Function GetUploadFilePath ( 
	folderPath As String,
	filePrefix As String,
	fileName As String
) As String
Visual C++
public:
virtual String^ GetUploadFilePath(
	String^ folderPath, 
	String^ filePrefix, 
	String^ fileName
) sealed
F#
abstract GetUploadFilePath : 
        folderPath : string * 
        filePrefix : string * 
        fileName : string -> string 
override GetUploadFilePath : 
        folderPath : string * 
        filePrefix : string * 
        fileName : string -> string 

Parameters

folderPath
Type: System..::..String
Folder where the file will be saved.
filePrefix
Type: System..::..String
Unique file prefix used to disambiguate multiple files.
fileName
Type: System..::..String
File name.

Return Value

Type: String
Temporary file path.

Implements

IFileContentProvider..::..GetUploadFilePath(String, String, String)

See Also