1
I’m picking up all the photos from a directory and its subsequent ones, but I wouldn’t want it to be the "Backup" folder, as I could do that?
string[] Arquivos = Directory.GetFiles(PathEx, "*.*", SearchOption.AllDirectories);
I was thinking of using the IndexOf()
, but I think that would be a bad optimization because it wouldn’t be easier to take them out than just check if it’s in the right or wrong folder?