Returns the target file path - where the file will be stored after the secondary upload. For standard file system provider it is equal to the path returned by the GetUploadFilePath; for Amazon S3 it is the full object path.

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

Syntax

C#
string GetTargetFilePath(
	string folderPath,
	string fileName
)
Visual Basic
Function GetTargetFilePath ( 
	folderPath As String,
	fileName As String
) As String
Visual C++
String^ GetTargetFilePath(
	String^ folderPath, 
	String^ fileName
)
F#
abstract GetTargetFilePath : 
        folderPath : string * 
        fileName : string -> string 

Parameters

folderPath
Type: System..::..String
Target folder path.
fileName
Type: System..::..String
File name.

Return Value

Type: String
Target file path.

See Also