vote up -3 vote down star
2

Can anyone give an idea of how should I implement undo/redo of files (dirs, subdirs) mapped in a treeview - C#?

Would be great some code samples

flag

What do you mean undo / redo? What are you doing with them? – xan Dec 15 '08 at 11:32
Could you please change the topic to something meanfully? – BeowulfOF Dec 15 '08 at 11:42

3 Answers

vote up 0 vote down check

For a quick linear undo/redo, you can use Memento pattern using zip of file as memento.

link|flag
vote up 3 vote down

Consider implementing Command pattern (GoF):

  • Put your actions logic into classes which implement common ICommand {Do(); Undo();} interface.
  • On each user action you create object of command requested and initialize it with context parameters like new and old filename.
  • Call Do(), put object into stack of completed commands.
  • Each command is supplied with context, so by calling Undo() it can reverse changes.
  • Consider moving files into temporary folder instead of removals.
link|flag
vote up 2 vote down

Undo / redo is typically implemented using the so-called "command pattern". Search with Google or read the following article:

http://blogs.vbcity.com/jspano/articles/198.aspx

link|flag
+1 for a Good answer, but no idea if it answers the question :) – Robert Gould Dec 15 '08 at 11:46
I also have no idea whether it answers the question ;-) – divo Dec 15 '08 at 12:00
with the new subject, do you understand the question? – Cornel Dec 15 '08 at 13:43
No. What are the actions that you want to do/undo? – divo Dec 15 '08 at 16:38
P.S.: Your subject simply repeats now what was already written in the first sentence. – divo Dec 15 '08 at 16:39
show 1 more comment

Your Answer

Get an OpenID
or

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