The filepattern tag has no wiki summary.
1
vote
2answers
131 views
Filename globbing Windows vs. Unix
Is something like this possible in the Windows standard shell using wildcards only?
$ ls -1 003[5,8]0
00350
00380
1
vote
4answers
2k views
GIT: I want to unstage all files matching a certain pattern
git reset *.foo
but this errors out.
I think I need to use a pipe, but not sure how to do this.
Thanks!
14
votes
6answers
4k views
Recursively add files by pattern
How do I recursively add files by a pattern (or glob) located in different directories?
For example, I'd like to add A/B/C/foo.java and D/E/F/bar.java (and several other java files) with one command:
...
0
votes
2answers
346 views
Directory.GetFileSystemInfos(string) returns non-matching files
I'm using the follow command to get a list of FileSystemInfo's
IList<FileSystemInfo> requestFiles =
new List<FileSystemInfo>(
...