Returns unique 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 GetUniqueTargetFilePath(
	string folderPath,
	string fileName,
	string salt
)
Visual Basic
Function GetUniqueTargetFilePath ( 
	folderPath As String,
	fileName As String,
	salt As String
) As String
Visual C++
String^ GetUniqueTargetFilePath(
	String^ folderPath, 
	String^ fileName, 
	String^ salt
)
F#
abstract GetUniqueTargetFilePath : 
        folderPath : string * 
        fileName : string * 
        salt : string -> string 

Parameters

folderPath
Type: System..::..String
Target folder path.
fileName
Type: System..::..String
File name.
salt
Type: System..::..String
Salt used to generate unique path.

Return Value

Type: String
Target file path.

See Also