public static void AppendTextInFile(string text)
        {
            OurWriter ourWriter = new OurWriter(FilePath);

            ourWriter.Write(text);
            ourWriter.Dispose();
        }