FileSystemName Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides methods for matching file system names.
public ref class FileSystemName abstract sealed
public static class FileSystemName
type FileSystemName = class
Public Class FileSystemName
- Inheritance
-
FileSystemName
Methods
MatchesSimpleExpression(ReadOnlySpan<Char>, ReadOnlySpan<Char>, Boolean) |
Verifies if the given expression matches the given name. Supports the following wildcards: '*' and '?'. The backslash character '\' escapes. |
MatchesWin32Expression(ReadOnlySpan<Char>, ReadOnlySpan<Char>, Boolean) |
Verifies if the given Win32 expression matches the given name. Supports the following wildcards: '*', '?', '<', '>', '"'. The backslash character '\' escapes. |
TranslateWin32Expression(String) |
Translates the given Win32 expression. Change '*' and '?' to '<', '>' and '"' to match Win32 behavior. |