This code is not moving my file and is not producing an error either. If I step through the code it is producing file names for "file" but for some reason just not moving...
string[] files = Directory.GetFiles("C:\\ExcelFiles\\","*.xlsx*",SearchOption.AllDirectories); foreach (string file in files) { File.Copy(file, @"\\C:\\Completed\\Excel\\"); } }