Cleans up a path such that, for example, "/A/B/../C" becomes "/A/C".

Namespace: EnterpriseDT.Util
Assembly: edtFTPnet (in edtFTPnet.dll) Version: 2.2.3.0

Syntax

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

Parameters

path
Type: System..::..String
Path to clean up.

Return Value

Cleaned up path.

See Also