[This is preliminary documentation and is subject to change.]

A static helper function that other code can call.

Namespace: MvcTestApp.Models
Assembly: MvcTestApp (in MvcTestApp.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static string fileNameFromFullPath(
	string fullFilePath
)
Visual Basic
Public Shared Function fileNameFromFullPath ( _
	fullFilePath As String _
) As String
Visual C++
public:
static String^ fileNameFromFullPath(
	String^ fullFilePath
)

Parameters

fullFilePath
Type: System..::..String
A fully qualified image path name, i.e. 'c:\Users\Administrator\cat.jpg'

Return Value

Just the filename, without the directories- i.e. 'cat.jpg'

See Also