I create a FileInfo array like this
try { DirectoryInfo Dir = new DirectoryInfo(DirPath); FileInfo[] FileList =
If you want to go the other way (convert string array into FileInfo's) you can use the following:
string[] files; var fileInfos = files.Select(f => new FileInfo(f)); List infos = fileInfos.ToList();