How do I get Dir[\'*\'] to include dotfiles, e.g., .gitignore, but not . and ..?
Dir[\'*\']
.gitignore
.
..
I.e., is there a better way to do:>
Here's a shorter version:
Dir['{.[^\.]*,*}']