Return the path of a file, given its absolute path complete of file name. It returns the string without the file name, and without the last "\".

Namespace: LLCryptoLib.Utils
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

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

Parameters

completeAbsolutePath
Type: System..::..String
absolute path complete of file name

Return Value

A string representing the path of the file

See Also