Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 317419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:28:27+00:00 2026-05-12T08:28:27+00:00

I have a YAML document like this: — version: 1 rootdirectory: – subdirectory: –

  • 0

I have a YAML document like this:

---
version: 1
rootdirectory:
  - subdirectory:
    - file1
    - file2
  - subdirectory2

that I am loading into a YAML::Tiny object like this:

$configuration = YAML::Tiny->read($configuration_file)

I see from invoking the script with the Perl debugger that what I end up with is a set of nested hashes and arrays that reflect the structure of the YAML source:

0  YAML::Tiny=ARRAY(0x84e3ba4)
   0  HASH(0x80627dc)
      'rootdirectory' => ARRAY(0x84e3d3c)
         0  HASH(0x84352b0)
            'subdirectory' => ARRAY(0x84e3df0)
               0  'file1'
               1  'file2'
         1  'subdirectory2'
      'version' => 1

So, I can do things like the following without problem:

print $configuration->[0]->{version}

and receive the expected answer of ‘1’. Likewise, I can also do:

print $configuration->[0]->{rootdirectory}->[0]->{subdirectory}->[0]

and receive the expected answer of ‘file1’.

My problem comes from all of the a priori knowledge I need to derive my filename in the above example. As I am trying to allow the users of my script to describe an arbitrary directory structure in the YAML configuration this isn’t good enough. I need to be able to “walk” the tree from ‘rootdirectory’.

So, I would have imagined I could have done something like this:

print keys($configuration->[0])

which I would have expected to have returned ‘rootdirectory,version’ … and so on, iterating over the arrays and hashes until I had walked the tree.

When I attempt to run the above example, I get:

Type of arg 1 to keys must be hash (not array element)

At this point I am stuck. As I understand it, $configuration->[0], whilst being an element of an array, is an element containing a hash that I believe I should be able to invoke the keys function against.

What am I missing here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:28:27+00:00Added an answer on May 12, 2026 at 8:28 am

    Try

    print "$_\n" for keys %{ $configuration->[0] };
    

    You have to force the array element “$configuration->[0]” into a hash ref with “%{...}“

    So to iterate over them:

    for my $key ( keys %{ $configuration->[0] } ){
      my $value = $configuration->[0]{$key};
    
      print "$key => $value\n";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 160k
  • Answers 160k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer With the help of CTE: WITH CategoriesWithPath (id, parentid, name,… May 12, 2026 at 11:34 am
  • Editorial Team
    Editorial Team added an answer Answered: I found out that there was a <%@ Assembly… May 12, 2026 at 11:34 am
  • Editorial Team
    Editorial Team added an answer The only way to handle this implicitly is to capture… May 12, 2026 at 11:34 am

Related Questions

I have a command line app the continuously outputs YAML data in the form:
When I first saw XML, I thought it was basically a representation of trees.
Anyone out there using YAML as a data DSL in .NET? I'd like to
I have a system that filters template files through erb. Using convention over configuration,
Quick summary: I have a Rails app that is a personal checklist / to-do

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.