Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the filename part of the URL.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Shared Function GetUrlFileName ( _
url As String _
) As String
'Usage
Dim url As String
Dim returnValue As String
returnValue = SPUtility.GetUrlFileName(url)
public static string GetUrlFileName(
string url
)
Parameters
url
Type: System.StringThe URL path.
Return Value
Type: System.String
A string that contains the filename part of the URL.
Remarks
If the url parameter is https://server/web/list/folder/file.txt, the returned filename part is "file.txt".