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#
public string GetTargetFilePath(
	string folderPath,
	string fileName
)
Visual Basic
Public Function GetTargetFilePath ( 
	folderPath As String,
	fileName As String
) As String
Visual C++
public:
virtual String^ GetTargetFilePath(
	String^ folderPath, 
	String^ fileName
) sealed
F#
abstract GetTargetFilePath : 
        folderPath : string * 
        fileName : string -> string 
override 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.

Implements

IFileContentProvider..::..GetTargetFilePath(String, String)

See Also