it might be some logic issue, but can't figure out
how can I sort my files where prefix_100.png is greater than prefix_2.png ?
thanks
var filesRaw = Directory.GetFiles(path, "*.png").Select(fn => new FileInfo(fn)).
OrderBy(f => f.Name).ToList();