File.Create(path);
                    XmlNode node = doc.CreateXmlDeclaration("1.0", "utf-8", null);
                    doc.AppendChild(node);
                    XmlNode root = doc.CreateElement("ROOT");
                    doc.AppendChild(root);
                    XmlElement time = doc.CreateElement("Time");
                    XmlAttribute value = doc.CreateAttribute("Value");
                    value.InnerText = "026";
                    locktime.SetAttributeNode(value);
                    doc.DocumentElement.AppendChild(time);
                    doc.Save(path);
                    doc = null;