I am saving an XMLDocument object to disk using the Save (string) function. When I do this I get a "Could not find a par of the path" error.
I have tried passing the characters as "&", "&", "%26", "\26", and "\38". What am I missing? Note that I am not talking about the content of the file -- but the filename.
Dim todocument As New Xml.XmlDocument
todocument.LoadXml(fromXml.OuterXml)
todocument.Save(toPath)