I want to get some files by some conditions, i can get the files by the file type, the code is below.
Dim wildcards As String() = {".mp3", ".ape"}
Dim ListFiles = FileIO.FileSystem.GetFiles("G:\Music", FileIO.SearchOption.SearchAllSubDirectories, wildcards)
Now I want to exclude the hidden, system properties and 0-byte files, how to add the LINQ express?
My .NET Framework version is 4.6, so I cannot use the Directory.EnumerateFiles method, thank you.