public static bool CheckIfAuthorsFileAllReadyExists(string filePath)
        {
            if (!File.Exists(filePath))
            {
                return(false);
            }

            MyMessagesClass.InformationMessage = string.Concat("This Author file all ready exists. ", filePath);
            MyMessagesClass.ShowInformationMessageBox();

            return(true);
        }