massValidator

This commit is contained in:
Digital Data - Marlon Schreiber
2019-05-23 10:02:54 +02:00
parent 7476639397
commit 74cb20b4ec
7 changed files with 788 additions and 891 deletions

View File

@@ -240,10 +240,12 @@ LOGGER.Error(ex)
If Path.StartsWith("\\windream") Then
oNormalizedPath = Path.Replace("\\windream\objects\", "")
ElseIf Path.StartsWith("\") Then
ElseIf Path.StartsWith("\\") Then
oNormalizedPath = Path.Substring(1)
Else
ElseIf Path.StartsWith("\") Then
Return Path
Else
Return "\" & Path
End If
Return oNormalizedPath