groups

name language licence
Getting Started Other Other
HTML 4.01 Strict HTML Other
HTML 4.01 Transitional HTML Other
Java Starter Java Other
Last reboot Shell Other
List of files in a directory Perl Other
List users SQL (Rails) Other
Load and execute a macro C++ Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 >



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...)