VMS::FindFile - Perl extension to return all the file names matching a


VMS-FindFile documentation  | view source Contained in the VMS-FindFile distribution.

Index


NAME

Top

VMS::FindFile - Perl extension to return all the file names matching a VMS wildcard file specification.

SYNOPSIS

Top

  use VMS::FindFile;

  my $ff=VMS::FindFile->new($wildcard_spec);

  while (my $filename = $ff->search()) {
     # ... do whatever with $filename ...
  }

DESCRIPTION

Top

VMS::FindFile is a VMS-specific module which returns all file names matching a VMS-style wildcard specification. It acts almost exactly like the f$search() function in DCL, except that instead of using context numbers to do multiple concurrent searches, you create multiple VMS::FindFile objects.

While it is VMS-specific, it's a lot faster than the system- independent File::Find.

AUTHOR

Top

Forrest Cahoon (forrest@cpan.org)

SEE ALSO

Top

perl(1).


VMS-FindFile documentation  | view source Contained in the VMS-FindFile distribution.