I'm sure this is straight forward and answered somewhere, but I didn't manage to find what I was looking for. Basically, I'm trying to run a cron script to clear the contents of a given directory every 7 days. So far I have tried the following,

find /myDir -mtime 7 -exec rm -rf {} \;

This however also deletes the parent directory myDir, which I do not want. I also tried,

find /myDir -type f -type d -mtime 7 -delete

which appeared to do nothing. I also tried,

fnd /myDir -type d -delete

which deleted all but the parent directory just as I need. However, a warning message came up reading,

relative path potentially not safe

I'd appreciate if anyone can rectify my script so that it safely deletes all subdirectories in folder.

Many thanks. =)

UPDATE: I decided to go for the following,

find /myDir -mindepth 1 -mtime 7 -delete

Based upon what I learned from all who replied. Again, many thanks to you all.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

Try:

find /myDir -mindepth 1 -mtime 7 -exec rm -rf {} \;
link|improve this answer
This worked although upon execution I was given a message saying 'no such file or directory' for every file/dir deleted. Wondering if this is perfectly normal or not? Many thanks. The mindepth switch is very useful and I didn't even know it existed! – infmz May 5 '11 at 13:54
I changed this slightly by using -delete instead of -exec rm. I didn't receive any warnings/errors this way. Is this a good way about it you reckon? – infmz May 5 '11 at 14:14
@infmz: i'm not a big fan of -exec as it spawns a process for each file found, which is hideous if you're matching large numbers of files, so i'm not sure why you get the error. i'm assuming that the -delete was implemented for that reason. fwiw i would have piped the result to xargs -l2000 rm -rf. – linuts May 6 '11 at 17:36
feedback

What about

cd myDir/ ; find . -type d -delete

assuming that you run this from myDir parent directory.

link|improve this answer
I didn't think of that. Works fine. Thank you! – infmz May 5 '11 at 10:53
@infmz: you're welcome. If you think this is a good answer for you question, then accept it as answer (that's the way stackoverflow works) – MarcoS May 5 '11 at 11:55
Thanks for the reminder, I know how it works. =) When I choose a best solution I will do. – infmz May 5 '11 at 13:16
feedback

This also works:

rm -r /myDir/*

I realize your title says "using find...", but I'm not sure it's necessary, so I thought I'd point this other more-straightforward option out.

link|improve this answer
Thank you. I need to delete files that are older than a given date, hence why I chose to use find for it's -mtime switch. – infmz May 5 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

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