Help for this page

Select Code to Download


  1. or download this
    my @dirs = grep {-d "$dir/$_"} readdir($gdh);
    
  2. or download this
    my @dirs = grep {/[^.]/ and -d "$dir/$_"} readdir($gdh);
    
  3. or download this
     
    opendir (my $tdh, "$dir/$tumordirs") or die "Unable to open subdir";