vote up 1 vote down star

I've got the hierarchial structure of files and folders inside of my application. Application works with absolute paths, which are stored in FileNode.Items list of strings.

When i've got to save my project, I serialize FileNode class in XML. But, I need to convert absolute paths to relatives (if possible) and then serialize.

So, my question is: Is there any solution to do it on the fly (i.e. any flag near the property which does any action with it) or i need to manually convert paths before every serialization and after every deserializaion?

Thank's a lot for your answers

flag

3 Answers

vote up 2 vote down

You could make a separate property on your FileNode class which returns relative paths, and add the [XmlIgnore] attribute to the original property to prevent it from being serialized.

Alternatively, you could implement IXmlSerializable to control the serialization yourself.

link|flag
vote up 1 vote down

No, there's no automatic way to do that.

You can implement ISerializable or get your XML serialized object and make your paths relative through XmlDocument

link|flag
vote up 0 vote down

I've got the idea to use [OnSerializingAttribute] and [OnDeserializingAttribute] to apply them to the methods, which convert paths to relative/full form. Is that gonna be alright?

link|flag
Please edit your question instead of adding an answer. – John Saunders Nov 10 at 5:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.