Changing dates on multiple files?

Kristjan

Different, I think...
How do I change the date and time information on all the files in a folder, and it its's sub-folders?

Thanks!
 
As from Kristjan said.

You've gotta open the Terminal. Then cd to the directory
you want then enter this command.

> find . -exec SetFile -m <date> {} \;

The find command will find all find in specified directory
( in this case . [current] directory ). Then it will execute
command you specified after -exec and {} will be replaced
by file name it found. Last \; will tell it where the command ends.

Cheers, UNIX.
 
Back
Top