I am getting the path of the folder where several files will be found, then I read the files and lastly I need to save the names in an array..how do I do that?
//ruta del folder
string folder_save = ConfigurationManager.AppSettings["folder"];
/*leer todos los archivos del folder*/
string[] files = Directory.GetFiles(folder_save);
string[] name_folder;
//guardar en arreglo
you could use
so you would be using linq to get the filenames