Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Open a file, pipe, or descriptorDetermine where a symbolic lin ... (Berikutnya)
Functions for filehandles, files, or directories

Open a directory

Daftar Isi

  • opendir DIRHANDLE,EXPR

    Opens a directory named EXPR for processing by readdir, telldir,seekdir, rewinddir, and closedir. Returns true if successful.DIRHANDLE may be an expression whose value can be used as an indirectdirhandle, usually the real dirhandle name. If DIRHANDLE is an undefinedscalar variable (or array or hash element), the variable is assigned areference to a new anonymous dirhandle; that is, it's autovivified.DIRHANDLEs have their own namespace separate from FILEHANDLEs.

    See the example at readdir.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Open a file, pipe, or descriptorDetermine where a symbolic lin ... (Berikutnya)