Thread selektives File::Find
(13 answers)
Opened by lichtkind at 2013-07-04 22:04
Hast du dir File::Find::Rule mal angeschaut?
Beispiel-Code von mir: Code (perl): (dl
)
1 2 3 4 5 6 7 # IN ALL CASES: we list the available directories # in "data" (level 1, not hidden, not archived) my @dirs = File::Find::Rule->directory ->maxdepth(1) ->not_name('.*') ->not_name('_*') ->in($place_to_store); Evtl. kannst du damit was machen... |