Base: Warnings bearbeitet
This commit is contained in:
parent
ec876ca518
commit
8d672b4b49
@ -177,7 +177,6 @@ Public Class FilesystemEx
|
|||||||
''' somestring~3 --> somestring~3 --> ['somestring', '3'] --> version 3
|
''' somestring~3 --> somestring~3 --> ['somestring', '3'] --> version 3
|
||||||
''' </example>
|
''' </example>
|
||||||
''' <param name="pString">The string to versioned</param>
|
''' <param name="pString">The string to versioned</param>
|
||||||
''' <param name="pSeparator">The character to split at</param>
|
|
||||||
''' <returns>Tuple of string and version</returns>
|
''' <returns>Tuple of string and version</returns>
|
||||||
Public Function GetVersionedString(pString As String) As Tuple(Of String, Integer)
|
Public Function GetVersionedString(pString As String) As Tuple(Of String, Integer)
|
||||||
Dim oSplitString = pString.Split(VERSION_SEPARATOR).ToList()
|
Dim oSplitString = pString.Split(VERSION_SEPARATOR).ToList()
|
||||||
@ -265,7 +264,7 @@ Public Class FilesystemEx
|
|||||||
_Logger.Warn("Deleting files was aborted at file {0}.", oFile.FullName)
|
_Logger.Warn("Deleting files was aborted at file {0}.", oFile.FullName)
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
oUnableToDeleteCounter = oUnableToDeleteCounter + 1
|
oUnableToDeleteCounter += 1
|
||||||
_Logger.Warn("File {0} could not be deleted!")
|
_Logger.Warn("File {0} could not be deleted!")
|
||||||
End Try
|
End Try
|
||||||
Next
|
Next
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user