groups

name language licence
Rename a lot of files in a directory 1 Perl Other
For the start of a PERL file Perl Other
List of files in a directory Perl Other
Untitled Snippet
Write data to a file Perl Other
Make a file containing a list of files in a directory Perl Other
Untitled Snippet Other Other

< 1 2 >



language: Perl
licence: Other

List of files in a directory

options: view full snippetsend to code collector
opendir(DIR, ".");
@files = grep(/\.root$/,readdir(DIR));
closedir(DIR);
	
(Continues...)