OpenLink Software

Usage stats on How to find the contents of a directory using PERL

 Permalink

an Entity in Data Space: dbkwik.org

To find the contents of a directory in perl use the opendir function. * opendir() * Operats similar to the open file function open() * format: opendir(VARIABLE, '/full/directory/or/relative * Example: opendir(DIR, '.'); open the current directory you are in and set it as variable DIR * readdir() * reads the contents of the directory * closedir() * closes the variable set for the directory read * practical example * This finds all jpgs and gifs in a directory and displays them for a website opendir(DIR, '.'); while (defined($dir = readdir(DIR))) { if ( $dir =~ /\.jpg/i || $dir =~ /\.gif/i) { print " "; } } closedir(DIR); From HowTo Wiki, a Wikia wiki.

Graph IRICount
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] This material is Open Knowledge Creative Commons License Valid XHTML + RDFa
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Copyright © 2009-2012 OpenLink Software