3
I want to take all the files started by something, for example "javaw" in a given directory. Thanks for the time.
3
I want to take all the files started by something, for example "javaw" in a given directory. Thanks for the time.
4
It’s not much of a secret:
Directory.GetFiles("C:\\diretorio", "javaw*", SearchOption.AllDirectories);
For recursive search, and
Directory.GetFiles("C:\\diretorio", "javaw*", SearchOption.AllDirectories);
Browser other questions tagged c#
You are not signed in. Login or sign up in order to post.