For a while, I've wanted to develop a small application that I can use to sync my mp3 player with my computer, or vice versa. It tends to be a fairly common thing, as I'm always adding/removing songs from one or the other. It also comes up a lot if I do a new install of an operating system and I'd like to have some music on there temporarily; it's just easier to transfer it from my mp3 player rather than another file system on a hard drive somewhere.
Yesterday, I started thinking about this application again, and today I began fleshing out some things on paper. I was going over things such as how you determine if two files are identical (despite file name, file size, etc... which don't really tell you anything about uniqueness), what sort of sync behavior should be used (mutual-add, mutual-add/delete, etc...), and how to handle the more real-life situation where you've got a number of folders with sub-directories as opposed to just a list of files. I had all of these great ideas of how to solve these problems, and my brain was working overtime for the problems I didn't yet have an answer to. I was looking at source code for some common core UNIX file utilities like diff, cmp, cp, etc... looking for pointers...
And then it happened. I realized that I didn't need to make any sort of application. I realized my "problem" was non-existent. Why, you ask?
With the use of the built-in UNIX 'cp' command (file copy), and a few command line switches, I could achieve my sync behavior.
cp --recursive --update
Subscribe to:
Post Comments (Atom)
1 comment:
rsync works even better.
Also, along the lines of your point. Getting Real (http://gettingreal.37signals.com/toc.php) is all about that sort of stuff.
Post a Comment