Code;
DirectoryInfo pasta = new DirectoryInfo(folderPath);
FileInfo[] adxs1 = pasta.GetFiles();
foreach (FileInfo names in adxs1)
{ File.Move(names.FullName, names.FullName.ToString().Replace("old_00079", "new_00098")); }
FileInfo[] adxs2 = pasta.GetFiles();
foreach (FileInfo names in adxs2)
{ File.Move(names.FullName, names.FullName.ToString().Replace("old_00091", "new_00105")); }
So, the sequence is this, and there are MANY files over 1000 rsrs. What I wanted to know about you is if I can, for example, rename all or one part at a time, even if it's different numbers?