GodlessSinner 2 Posted March 28, 2010 Share Posted March 28, 2010 (edited) How to assign file name with not allowed symbols using C#? If this question is not in topic - delete it. Edited March 28, 2010 by GodlessSinner _____________________________________________________________________________ Link to post Share on other sites
Richard Robertson 189 Posted March 28, 2010 Share Posted March 28, 2010 Are you referring to using the file functions with symbols that you aren't allowed to use in a Windows Path? You can't. They aren't allowed. Link to post Share on other sites
GEOSoft 70 Posted March 28, 2010 Share Posted March 28, 2010 And what Richard said holds true for any language if the Windows API is involved. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!" Link to post Share on other sites
PhilHibbs 1 Posted March 29, 2010 Share Posted March 29, 2010 How to assign file name with not allowed symbols using C#?Do you mean "symbols not allowed in a file name" or "symbols not allowed in C#"? Link to post Share on other sites
Richard Robertson 189 Posted March 29, 2010 Share Posted March 29, 2010 Do you mean "symbols not allowed in a file name" or "symbols not allowed in C#"?Considering any file name symbols would be in a string, I don't know how it could run into issues with C# as a language. Link to post Share on other sites
PhilHibbs 1 Posted March 29, 2010 Share Posted March 29, 2010 Considering any file name symbols would be in a string, I don't know how it could run into issues with C# as a language.I suppose - the only symbols that you'd have a problem with in C# would be \ and " which are not allowed in files either. Link to post Share on other sites
Richard Robertson 189 Posted March 29, 2010 Share Posted March 29, 2010 (edited) I suppose - the only symbols that you'd have a problem with in C# would be \ and " which are not allowed in files either.You clearly have never heard of escape codes.http://msdn.microsoft.com/en-us/library/aa691090%28VS.71%29.aspx Edited March 29, 2010 by Richard Robertson Link to post Share on other sites
PhilHibbs 1 Posted March 29, 2010 Share Posted March 29, 2010 You clearly have never heard of escape codes.Not true, I was merely asking if the OP was having trouble with C#. Link to post Share on other sites
Richard Robertson 189 Posted March 30, 2010 Share Posted March 30, 2010 Not true, I was merely asking if the OP was having trouble with C#.Chalk that one up to English failing as a language then. It sounded to me as if you didn't understand escape codes. Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now