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

Implements

IFileContentProvider..::..GetUniqueTargetFilePath(String, String, String)

See Also