Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Directory Structure.

by shmem (Chancellor)
on Mar 31, 2017 at 13:19 UTC ( [id://1186621]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    VEHICLES/CARS/BIKES
    
  2. or download this
    $dir = "VEHICLES";
    @files = ('CARS', 'BIKES');
    ...
      chdir $file or die "(loop) can't chdir to $file: '$!'";
      chdir $dir or die "(loop) can't chdir to $dir: '$!'";
    }
    
  3. or download this
    (loop) can't chdir to VEHICLES: 'No such file or directory' at try.pl 
    +line 10.
    
  4. or download this
    $dir = "VEHICLES";
    @files = ('CARS', 'BIKES');
    ...
    
      mkdir $file or die "(loop) can't mkdir $file: '$!'";
    }
    
  5. or download this
    can't mkdir VEHICLES: File exists at try.pl line 3.
    
  6. or download this
    $dir = "VEHICLES";
    @files = ('CARS', 'BIKES');
    ...
          mkdir $file or die "(loop) can't mkdir $file: '$!'";
      }
    }
    
  7. or download this
    VEHICLES
    VEHICLES/BIKES
    VEHICLES/CARS
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1186621]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-25 20:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found