I want to include batch file rename functionality in my application. User can type destination filename pattern and (after replacing some wildcards in pattern) I need to check if it's going to be legal filename under Windows. I tried to use regular expression like [a-zA-Z0-9_]+ but it doesn't include many national-specific characters from various languages (umlauts and so on). What is the best way to do such check?
|
2
|
|||
|
|
|
You can get a list of invalid characters from Path.GetInvalidPathChars http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidpathchars.aspx And GetInvalidFileNameChars http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidfilenamechars.aspx UPD: See Steve Cooper's suggestion on how to use these in a regular expression. |
|||
|
|
|
|
From MSDN's "Naming a File or Directory," here are the general conventions for what a legal file name is under Windows: You may use any character in the current code page (Unicode/ANSI above 127), except:
Some optional things to check:
References: |
||||
|
|
|
Regular expression matching should get you some of the way. Here's a snippet using the
Once you know that, you should also check for different formats, eg |
||||
|
|
|
Try to use it, and trap for the error. The allowed set may change across file systems, or across different versions of Windows. In other words, if you want know if Windows likes the name, hand it the name and let it tell you. |
||
|
|
|
|
Rather than explicitly include all possible characters, you could do a regex to check for the presence of illegal characters, and report an error then. Ideally your application should name the files exactly as the user wishes, and only cry foul if it stumbles across an error. |
||||
|
|
|
Microsoft Windows: Windows kernel forbids the use of characters in range 1-31 (i.e., 0x01-0x1F) and characters " * : < > ? \ |. Although NTFS allows each path component (directory or filename) to be 255 characters long and paths up to about 32767 characters long, the Windows kernel only supports paths up to 259 characters long. Additionally, Windows forbids the use of the MS-DOS device names AUX, CLOCK$, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, CON, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL and PRN, as well as these names with any extension (for example, AUX.txt), except when using Long UNC paths (ex. \.\C:\nul.txt or \?\D:\aux\con). (In fact, CLOCK$ may be used if an extension is provided.) These restrictions only apply to Windows - Linux, for example, allows use of " * : < > ? \ | even in NTFS. |
||
|
|
|
|
One corner case to keep in mind, which surprised me when I first found out about it: Windows allows leading space characters in file names! For example, the following are all legal, and distinct, file names on Windows (minus the quotes):
One takeaway from this: Use caution when writing code that trims leading/trailing whitespace from a filename string. |
||
|
|
|
|
The question is are you trying to determine if a path name is a legal windows path, or if it's legal on the system where the code is running.? I think the latter is more important, so personally, I'd probably decompose the full path and try to use _mkdir to create the directory the file belongs in, then try to create the file. This way you know not only if the path contains only valid windows characters, but if it actually represents a path that can be written by this process. |
|||
|
|
|
|
This is what I use:
The first pattern creates a regular expression containing the invalid/illegal file names and characters for Windows platforms only. The second one does the same but ensures that the name is legal for any platform. |
||
|
|
|
|
Also CON, PRN, AUX, NUL, COM# and a few others are never legal filenames in any directory with any extension. |
||
|
|
|
|
From MSDN, here's a list of characters that aren't allowed:
|
||
|
|
|
|
Windows filenames are pretty unrestrictive, so really it might not even be that much of an issue. The characters that are disallowed by Windows are:
You could easily write an expression to check if those characters are present. A better solution though would be to try and name the files as the user wants, and alert them when a filename doesn't stick. |
||
|
|
|
Regular expressions are overkill for this situation. You can use the String.IndexOfAny() method in combination with Path.GetInvalidPathChars() and Path.GetInvalidFileNameChars(). Also note that both Path.GetInvalidXXX() methods clone an internal array and return the clone. So if you're going to be doing this a lot (thousands and thousands of times) you can cache a copy of the invalid chars array for reuse. HTH, Sam |
||
|
|
|
|
Keep in mind that even if the user enters a semantically valid path, this does not mean that they will have permissions to create that file, or even if the semantically valid path can even be created. |
||
|
|
