diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java b/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java index b694422e38..9ad957d8c3 100644 --- a/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java @@ -164,8 +164,7 @@ public class FileUtil { */ public static String escapeFileName(String fileName) { //for now escaping /:"*?<>| (not valid in file name, at least on Windows) - //with underscores. - //We are only keeping \ as it could be part of the path + //with underscores. We are only keeping \ as it could be part of the path. return fileName.replaceAll("[\\/:\"*?<>|]+", "_"); } }