Filesystem: Version 1.0.1.1

This commit is contained in:
Jonathan Jenne
2020-04-30 11:45:04 +02:00
parent dfb53d60e6
commit 857f1b1f9f
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ Public Class File
Dim oCleanName As String = FilePath
oCleanName = Regex.Replace(oCleanName, _invalidPathChars, String.Empty)
oCleanName = Regex.Replace(oCleanName, REGEX_CLEAN_FILENAME, String.Empty, RegexOptions.Singleline)
oCleanName = Regex.Replace(oCleanName, REGEX_CLEAN_PATH, String.Empty, RegexOptions.Singleline)
_logger.Debug("Path after cleaning: [{0}]", oCleanName)