An improvement on the previous post about a copy program in C. This program is more similar to rsync – it checks if the file exists and only copies chars that are different thus reducing compute time ( hopefully! ). /** * rsync.c * * copys a file to a different location – only * […]
Archives
Date: November, 2010
Wrote a quick program in C today which basically does the same thing as the UNIX cp command and the copy command on DOS. Thought I’d post it since I haven’t posted anything in a while! /** * copy.c * * copys a file to a different location * * @author Conor Mac Aoidh <conormacaoidh@gmail.com> […]