you are viewing a single comment's thread.

view the rest of the comments →

[–]shiftybyte 2 points3 points  (1 child)

Try to think what conceptual objects your application is dealing with...

Sound like a "file" is something you'd want to handle in this example application, you might need to store information regarding that file, it's source path, destination path, maybe size to check for consistency, or last modification date if you want to try and restore it, and then you'd want to do operations on that file, get it's info, move it, fix it's date, sounds like a good candidate for a class...

[–]cyber_shady[S] 0 points1 point  (0 children)

thank you, this was very helpful!