Thread Datei- und Verzeichnisnamen in Array speichern
(2 answers)
Opened by pernox77 at 2010-10-03 18:55
Der Fehler liegt darin, dass Du nicht den kompletten Pfad bei der Überprüfung angibst. So sollte es funktionieren:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 $dir = 'c:\p'; opendir (DIR, $dir) or die $!; while( $direntry = readdir(DIR)) { my $path = $dir . '/' . $direntry; if (-f $path){push (@files, $direntry)}; if (-d $path){push (@subdirs, $direntry)}; } OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |