| View previous topic :: View next topic |
| Author |
Message |
SAN CAZIANO Guest
|
Posted: Sun Feb 11, 2007 11:39 pm Post subject: find all the files that is not readonly in the dir and in al |
|
|
how can I find all the files that is not readonly in the dir and in all
subdir of the specified path ??? |
|
| Back to top |
|
 |
Liz Guest
|
Posted: Mon Feb 12, 2007 12:27 am Post subject: Re: find all the files that is not readonly in the dir and i |
|
|
SAN CAZIANO wrote:
| Quote: | how can I find all the files that is not readonly in the dir and in
all subdir of the specified path ???
|
take a look at the findfiles source on my link below, it doesnt do
exactly all that you say, however, a short tweak and it would.
--
Liz the Brit
Delphi things I have released: http://www.xcalibur.co.uk/DelphiThings |
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Mon Feb 12, 2007 5:18 am Post subject: Re: find all the files that is not readonly in the dir and i |
|
|
"SAN CAZIANO" <sancaziano (AT) tiscali (DOT) it> wrote in message
news:45cf5502 (AT) newsgroups (DOT) borland.com...
| Quote: | how can I find all the files that is not readonly in the dir and
in all subdir of the specified path ???
|
Please do not cross-post. It is against Borland's newsgroup
guidelines (http://info.borland.com/newsgroups). Only post to the
single most appropriate group.
Gambit |
|
| Back to top |
|
 |
Bob Guest
|
Posted: Mon Feb 12, 2007 9:12 am Post subject: Re: find all the files that is not readonly in the dir and i |
|
|
SAN CAZIANO wrote:
| Quote: | how can I find all the files that is not readonly in the dir and in
all subdir of the specified path ???
|
Here is an old school simple answer:
dos box:
dir *.* /s /a-r
-- |
|
| Back to top |
|
 |
|