Daniel Brown wrote:
On Fri, Feb 29, 2008 at 5:22 AM, Shelley <[EMAIL PROTECTED]> wrote:
Hi all,
What's the command to use if I want to remove all the directories and
files except 'a.gz' under a directory?
There isn't a "command" in PHP to do this. You'd have to write a
script t
On Fri, Feb 29, 2008 at 5:22 AM, Shelley <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> What's the command to use if I want to remove all the directories and
> files except 'a.gz' under a directory?
There isn't a "command" in PHP to do this. You'd have to write a
script to handle that processing.
What's the command to use if I want to remove all the directories and
files except 'a.gz' under a directory?
There isn't one. If you're using *nix, you could try this:
exec('find ! -name a.gz -maxdepth 1 -exec rm -rf {} \;');
Or something like that. If you're on Windows you'll need someone els
3 matches
Mail list logo