Gets a relative path to the uploaded file.
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
Public ReadOnly Property RelativeFilePath As String
public string RelativeFilePath { get; }
true
) and the uploaded file was located inside a subfolder. In that case this property contains a relative path to the file and the OriginalFileName represents its filename. For example, if the user sends a My Documents\My Photos\00001.jpg
file its FileName_i POST field will contain
My Documents\My Photos\00001.jpg
value. However, the RelativeFilePath property will contain My Documents\My Photos\
value and the OriginalFileName property will contain 00001.jpg
.