Help for this page

Select Code to Download


  1. or download this
    [
      {information => {
    ...
      }
      }
    ]
    
  2. or download this
    my $arrayref = _directoryTree('/usr/local/bin','/usr/local');
    
  3. or download this
    get => 'directory_list' sub {
      my $self = shift;
      my $arrayref = _directoryTree('/usr/local/bin','/usr/local');
      $self->render(json => $arrayref);
    };