containsIllegalWindowsCharacters function

bool containsIllegalWindowsCharacters(
  1. String filename
)

Checks if the filename contains illegal Windows characters.

Implementation

bool containsIllegalWindowsCharacters(String filename) {
  return filename.contains(illegalFATCharactersRegex);
}