|
FilePathGetLastDirectoryName Method
|
Gets the last directory name from a file path.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public static string GetLastDirectoryName(
string filePath
)
Public Shared Function GetLastDirectoryName (
filePath As String
) As String
public:
static String^ GetLastDirectoryName(
String^ filePath
)
static member GetLastDirectoryName :
filePath : string -> string
GSF.IO.FilePath.GetLastDirectoryName = function(filePath);
View SourceParameters
- filePath String
- The file path from where the last directory name is to be retrieved.
Return Value
StringThe last directory name from a file path.
Remarks GetLastDirectoryName(String) would return sub2 from c:\windows\sub2\filename.ext.
See Also