Este team de redactores ha estado por horas investigando para dar respuesta a tu pregunta, te dejamos la resolución por esto nuestro deseo es resultarte de mucha apoyo.
Ejemplo 1: archivo de copia c#
File.Copy(Path.Combine(sourceDir, fName), Path.Combine(distDir, fName));
Ejemplo 2: mover 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);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)