Is there a wildcard expansion option for .net apps? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T06:03:25Z http://stackoverflow.com/feeds/question/381366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/381366/is-there-a-wildcard-expansion-option-for-net-apps 3 Is there a wildcard expansion option for .net apps? crashmstr http://stackoverflow.com/users/1441 2008-12-19T15:50:40Z 2009-04-17T19:21:37Z <p>I've used the <a href="http://msdn.microsoft.com/en-us/library/8bch7bkk.aspx" rel="nofollow">setargv.obj linking for Expanding Wildcard Arguments</a> in the past for a number of C and C++ apps, but I can't find any similar mention for .net applications.</p> <p><b>Is there a <i>standard</i> way to have your app's command line parameters automatically wildcard expanded?</b> (i.e. expand *.doc from one entry in args parameter to all that match that wildcard).</p> <p>P.S. I've hacked something together with Directory.GetFiles() for my current little project, but it does not cover wildcards with paths (yet), and it would be nice to do it without custom code.</p> <p><b>Update:</b> here is my rough hack, for illustration. It needs to split the parameters for path and name for the GetFiles, but this is the general idea. Linking setargv.obj into a C or C++ app would basically do all the wildcard expansion, leaving the user to only iterate over the argv array.</p> <pre><code> static void Main(string[] args) { foreach (String argString in args) { // Split into path and wildcard int lastBackslashPos = argString.LastIndexOf('\\') + 1; path = argString.Substring(0, lastBackslashPos); filenameOnly = argString.Substring(lastBackslashPos, argString.Length - lastBackslashPos); String[] fileList = System.IO.Directory.GetFiles(path, filenameOnly); foreach (String fileName in fileList) { //do things for each file } } } </code></pre> http://stackoverflow.com/questions/381366/is-there-a-wildcard-expansion-option-for-net-apps/381471#381471 0 Answer by BenAlabaster for Is there a wildcard expansion option for .net apps? BenAlabaster http://stackoverflow.com/users/40650 2008-12-19T16:37:14Z 2008-12-19T17:20:10Z <p>I'm not sure exactly what you're after... but if I get where you're going with the Directory.GetFiles() "hack" you mentioned, then something like this might work:</p> <pre><code>var Dirs = Directory.GetDirectories(@"C:\Windows", "sys*", SearchOption.TopDirectoryOnly).ToList(); var Files = new List&lt;String&gt;(); Dirs.ForEach(dirName =&gt; Files.AddRange(Directory.GetFiles(dirName, "*.sys", SearchOption.AllDirectories))); </code></pre> <p>The wildcard option on the GetDirectories call will allow you to grab all the directories contained in the Windows folder [directly] that match the pattern "sys*".</p> <p>You can then iterate over those folders grabbing all the files that match the pattern "*.sys".</p> <p>Is that the kind of thing you're looking for? To automatically expand the args, you'd have to extract the wildcards in some kind of meaningful manner and apply them to that model...</p> <p>For instance:</p> <p>RunMyApp "C:\Windows\Sys*\ *.sys"</p> <p>You'd pull out the string C:\Windows - probably with a regular expression, find the lowest level directory that doesn't contain a wildcard and apply it to the GetDirectories method, attaching the wildcarded string as the search parameter.</p> <p>Then if your end of string (in this case *.sys) as the search pattern for Directory.GetFiles.</p> <p>If you wanted to get more complicated and do something like:</p> <pre><code>C:\Windows\*\Sys*\*.sys </code></pre> <p>You would use the SearchOptions to set this behaviour:</p> <pre><code>Directory.GetDirectories(@"C:\Windows", "sys*", SearchOptions.AllDirectories) </code></pre> <p>This would grab all directories that matched the sys* wildcard in the Windows directory and all directories below it.</p> <p>If you wanted to get much more complicated than that, then I'm not sure how you would do that... for instance, say you wanted folders that are contained by folders directly inside the Windows directory - I have no idea how you would go about something like that I'm afraid...I don't imagine exporting the entire tree structure to XML and using XPath to do it would be so efficient - the XPath would be fabulously simple for parsing out using wildcards - but converting to XML wouldn't be so efficient...</p> http://stackoverflow.com/questions/381366/is-there-a-wildcard-expansion-option-for-net-apps/387880#387880 1 Answer by just in case for Is there a wildcard expansion option for .net apps? just in case http://stackoverflow.com/users/12958 2008-12-23T00:51:24Z 2008-12-23T00:51:24Z <p>Your code looks like exactly how you're supposed to do it.</p>