ATMLManagerLibrary.managers.FileManager.RenameProjectFiles C# (CSharp) Method

RenameProjectFiles() public static method

public static RenameProjectFiles ( string projectPath, string oldName, string newName ) : void
projectPath string
oldName string
newName string
return void
        public static void RenameProjectFiles( string projectPath, string oldName, string newName )
        {
            List<string> fileList = new List<string>();
            GetFileNames(fileList, projectPath, true, "*" + oldName + "*.*");
            int i = 0;
        }