comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: find_subtree.pro
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: find_subtree.pro [message #11896 is a reply to message #11894] Wed, 03 June 1998 00:00 Go to previous message
mallors is currently offline  mallors
Messages: 76
Registered: November 1997
Member
In article <35741201.F0CD2D26@risoe.dk>,
Kristian Kjaer <kristian.kjaer@risoe.dk> writes:
> Hi,
>
> I am looking for piece of code - similar to findfile() - which will
> return the fully-qualified paths to all subdirectories of the default
> directory, or return the fully-qualified paths to, say, all files *.dat
> in all subdirectories of the default directory.
>
> (I use IDL 5 on WinNT.)
>

Here is a program I call FINDFILES that I wrote, since IDL's
FINDFILE seems somewhat limited. Unfortunately, I only had
access to Unix and VMS machines, so for Windows and Mac
the program is currently just a wrapper to FINDFILE. Perhaps
someone on one of those machines can update it?

-bob


; start FINDFILES.PRO

; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
;+
; NAME:
; FINDFILES
;
; PURPOSE:
; Find all files matching a file filter. Replacement for the
; IDL builtin routine FILEFILE, which does not handle recursive
; search of directories correctly.
;
; Currently implemented for UNIX and VMS systems only. For Windows
; and MacOS, this routine is a wrapper for FINDFILE.
;
; TYPE:
; FUNCTION
;
; CATEGORY:
; FILES
;
; CALLING SEQUENCE:
; result = FINDFILES (fileFilter [, /RECURSE, ROOT = root, COUNT = count])
;
; INPUTS:
; fileFilter: Optional STRING denoting the file filter used in the search.
; Any valid system command interpreter wildcards can be used.
; If not supplied, one of the following is used:
; UNIX: '*'
; MACOS: '*'
; VMS: '*.*'
; WINDOWS: '*.*'
;
; KEYWORD PARAMETERS:
;
; RECURSE : Set this keyword to search recursively for matching files.
; ROOT : Set this keyword to a STRING denoting the directory from which
; to start the search. If not supplied, the current directory
; is used.
; COUNT : A named variable into which the number of files found is placed.
; If no files are found, a value of 0 is returned.
;
; OUTPUTS:
; result: STRARR of matching files, or NULL string if no files are found.
;
; COMMON BLOCKS:
; NONE
;
; SIDE EFFECTS:
; None known
;
; RESTRICTIONS:
; None known
;
; DEPENDENCIES:
; NONE
;
; MODIFICATION HISTORY:
; Written, 1998 May, Robert.Mallozzi@msfc.nasa.gov
;
;-
; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

FUNCTION FINDFILES, fileSpec, RECURSE = recurse, ROOT = root, COUNT = count


doRecurse = KEYWORD_SET (recurse)

IF (N_ELEMENTS (root) NE 0) THEN BEGIN
searchDir = root
ENDIF ELSE BEGIN
CD, CURRENT = searchDir
ENDELSE


CASE (STRUPCASE (!VERSION.OS_FAMILY)) OF

'UNIX': BEGIN

IF (N_ELEMENTS (fileSpec) EQ 0) THEN $
fileSpec = '*'

IF (doRecurse) THEN BEGIN

command = 'find ' + searchDir + $
' -name "' + fileSpec + '"'

ENDIF ELSE BEGIN

command = 'find ' + searchDir + $
' -maxdepth 1 -name "' + fileSpec + '"'

ENDELSE

SPAWN, /SH, command, result
END

'VMS': BEGIN

IF (N_ELEMENTS (fileSpec) EQ 0) THEN $
fileSpec = '*.*'

IF (doRecurse) THEN BEGIN

command = STRMID (searchDir, 0, STRLEN (searchDir) - 1) + $
'...]' + fileSpec

ENDIF ELSE BEGIN

command = fileSpec

ENDELSE

result = FINDFILE (command)
END

'MACOS': BEGIN

IF (N_ELEMENTS (fileSpec) EQ 0) THEN $
fileSpec = '*'

result = FINDFILE (fileSpec)
END

'WINDOWS': BEGIN

IF (N_ELEMENTS (fileSpec) EQ 0) THEN $
fileSpec = '*.*'

result = FINDFILE (fileSpec)
END

ELSE: MESSAGE, 'Unsupported operating system.'

ENDCASE

IF (result[0] EQ '') THEN BEGIN
count = 0L
ENDIF ELSE BEGIN
count = N_ELEMENTS (result)
ENDELSE


RETURN, result

END

; end FINDFILES.PRO


--
Robert S. Mallozzi
http://cspar.uah.edu/~mallozzir/
[Message index]
 
Read Message
Read Message
Previous Topic: FFT and CONVOL
Next Topic: Re: Cross-platform PWD

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Thu Dec 04 13:43:26 PST 2025

Total time taken to generate the page: 1.20543 seconds