How check if given string is legal (allowed) file name under Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:00:45Zhttp://stackoverflow.com/feeds/question/62771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows10How check if given string is legal (allowed) file name under Windows?tomash2008-09-15T13:17:29Z2009-10-08T22:39:30Z
<p>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?</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62787#627875Answer by ConroyP for How check if given string is legal (allowed) file name under Windows?ConroyP2008-09-15T13:19:44Z2009-10-08T22:39:30Z<p>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.</p>
<p><a href="http://willowpondlane.com/blackbox/2004/01/illegal-windows-file-name-characters.html" rel="nofollow">Illegal characters in Windows filenames</a></p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62797#627970Answer by Mark Biek for How check if given string is legal (allowed) file name under Windows?Mark Biek2008-09-15T13:20:54Z2008-09-15T13:20:54Z<p>From <a href="http://msdn.microsoft.com/en-us/library/aa365247.aspx" rel="nofollow">MSDN</a>, here's a list of characters that aren't allowed:</p>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p>Use almost any character in the current code page for a name, including Unicode characters and characters in the extended character set (128–255), except for the following:</p>
<ul>
<li>The following reserved characters are not allowed:
< > : " / \ | ? *</li>
<li>Characters whose integer representations are in the range from zero through 31 are not allowed.</li>
<li>Any other character that the target file system does not allow.</li>
</ul>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62805#6280512Answer by Eugene Katz for How check if given string is legal (allowed) file name under Windows?Eugene Katz2008-09-15T13:22:16Z2008-09-15T16:23:09Z<p>You can get a list of invalid characters from Path.GetInvalidPathChars</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidpathchars.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidpathchars.aspx</a></p>
<p>And GetInvalidFileNameChars</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidfilenamechars.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidfilenamechars.aspx</a></p>
<p><strong>UPD:</strong> See <a href="http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows#62855">Steve Cooper's suggestion</a> on how to use these in a regular expression.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62828#628280Answer by Justin Poliey for How check if given string is legal (allowed) file name under Windows?Justin Poliey2008-09-15T13:23:55Z2008-09-15T13:23:55Z<p>Windows filenames are pretty unrestrictive, so really it might not even be <em>that</em> much of an issue. The characters that are disallowed by Windows are:</p>
<pre><code>\ / : * ? " < > |
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62831#628311Answer by Roland Rabien for How check if given string is legal (allowed) file name under Windows?Roland Rabien2008-09-15T13:24:18Z2008-09-15T13:24:18Z<p>Also CON, PRN, AUX, NUL, COM# and a few others are never legal filenames in any directory with any extension.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62841#628413Answer by Prise for How check if given string is legal (allowed) file name under Windows?Prise2008-09-15T13:25:43Z2008-09-15T13:25:43Z<p>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.</p>
<p>Source: <a href="http://en.wikipedia.org/wiki/Filename" rel="nofollow">http://en.wikipedia.org/wiki/Filename</a></p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62855#628559Answer by Steve Cooper for How check if given string is legal (allowed) file name under Windows?Steve Cooper2008-09-15T13:26:54Z2008-09-15T13:26:54Z<p>Regular expression matching should get you some of the way. Here's a snippet using the <code>System.IO.Path.InvalidPathChars</code> constant;</p>
<pre><code> bool IsValidFilename(string testName)
{
Regex containsABadCharacter = new Regex("[" + Regex.Escape(System.IO.Path.InvalidPathChars) + "]");
if (containsABadCharacter.IsMatch(testName) { return false; };
// other checks for UNC, drive-path format, etc
return true;
}
</code></pre>
<p>Once you know that, you should also check for different formats, eg <code>c:\my\drive</code> and <code>\\server\share\dir\file.ext</code></p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62862#628622Answer by kfh for How check if given string is legal (allowed) file name under Windows?kfh2008-09-15T13:27:16Z2008-09-15T13:42:27Z<p>The question is are you trying to determine if a path name is a legal windows path, or if it's legal <strong>on the system where the code is running.</strong>? 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.</p>
<p>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.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62888#6288811Answer by sixlettervariables for How check if given string is legal (allowed) file name under Windows?sixlettervariables2008-09-15T13:30:30Z2008-09-15T13:30:30Z<p>From MSDN's "Naming a File or Directory," here are the general conventions for what a legal file name is under Windows:</p>
<p>You may use any character in the current code page (Unicode/ANSI above 127), except:</p>
<ul>
<li>< > : " / \ | ? *</li>
<li>Characters whose integer representations are 0-31 (less than ASCII space)</li>
<li>Any other character that the target file system does not allow (say, trailing periods or spaces)</li>
<li>Any of the DOS names: CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9 (and avoid AUX.txt, etc)</li>
<li>The file name is all periods</li>
</ul>
<p>Some optional things to check:</p>
<ul>
<li>File paths (including the file name) may not have more than 260 characters (that don't use the "\?\" prefix)</li>
<li>Unicode file paths (including the file name) with more than 32,000 characters when using "\?\" (note that prefix may expand directory components and cause it to overflow the 32,000 limit)</li>
</ul>
<p>References:</p>
<ol>
<li><a href="http://msdn.microsoft.com/en-us/library/aa365247.aspx" rel="nofollow" title="Naming a File or Directory">MSDN: Naming a File or Directory</a></li>
</ol>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/63129#631296Answer by Dewayne Christensen for How check if given string is legal (allowed) file name under Windows?Dewayne Christensen2008-09-15T14:00:49Z2008-09-15T14:00:49Z<p>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.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/63235#632352Answer by Scott Dorman for How check if given string is legal (allowed) file name under Windows?Scott Dorman2008-09-15T14:11:12Z2008-09-15T14:11:12Z<p>This is what I use:</p>
<pre><code> public static bool IsValidFileName(this string expression, bool platformIndependent)
{
string sPattern = @"^(?!^(PRN|AUX|CLOCK\$|NUL|CON|COM\d|LPT\d|\..*)(\..+)?$)[^\x00-\x1f\\?*:\"";|/]+$";
if (platformIndependent)
{
sPattern = @"^(([a-zA-Z]:|\\)\\)?(((\.)|(\.\.)|([^\\/:\*\?""\|<>\. ](([^\\/:\*\?""\|<>\. ])|([^\\/:\*\?""\|<>]*[^\\/:\*\?""\|<>\. ]))?))\\)*[^\\/:\*\?""\|<>\. ](([^\\/:\*\?""\|<>\. ])|([^\\/:\*\?""\|<>]*[^\\/:\*\?""\|<>\. ]))?$";
}
return (Regex.IsMatch(expression, sPattern, RegexOptions.CultureInvariant)));
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/64807#648070Answer by s n for How check if given string is legal (allowed) file name under Windows?s n2008-09-15T17:12:40Z2008-09-15T17:12:40Z<p>Regular expressions are overkill for this situation. You can use the String.IndexOfAny() method in combination with Path.GetInvalidPathChars() and Path.GetInvalidFileNameChars().</p>
<p>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.</p>
<p>HTH,</p>
<p>Sam</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/66355#663550Answer by Nick for How check if given string is legal (allowed) file name under Windows?Nick2008-09-15T20:01:39Z2008-09-15T20:01:39Z<p>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.</p>
http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/101706#1017063Answer by Jon Schneider for How check if given string is legal (allowed) file name under Windows?Jon Schneider2008-09-19T13:11:27Z2008-09-19T13:11:27Z<p>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):</p>
<pre><code>"file.txt"
" file.txt"
" file.txt"
</code></pre>
<p>One takeaway from this: Use caution when writing code that trims leading/trailing whitespace from a filename string.</p>