Basta ya de buscar por todo internet porque llegaste al espacio indicado, poseemos la respuesta que quieres recibir pero sin complicarte.
Ejemplo: mover un archivo de una carpeta a otra c#
//take all files of main folder to folder model_RCCMrecTransfered string rootFolderPath =@"F:/model_RCCMREC/";string destinationPath =@"F:/model_RCCMrecTransfered/";string filesToDelete =@"*_DONE.wav";// Only delete WAV files ending by "_DONE" in their filenamesstring[] fileList = System.IO.Directory.GetFiles(rootFolderPath, filesToDelete);foreach(string file in fileList){string fileToMove = rootFolderPath + file;string moveTo = destinationPath + file;//moving file
File.Move(fileToMove, moveTo);
Te mostramos las reseñas y valoraciones de los lectores
Si te ha sido de ayuda nuestro artículo, sería de mucha ayuda si lo compartes con más programadores y nos ayudes a extender esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)