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 8840227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:25:05+00:00 2026-06-14T10:25:05+00:00

I don’t see the find2perl documentation mentioning anything about support for -mindepth and -maxdepth

  • 0

I don’t see the find2perl documentation mentioning anything about support for -mindepth and -maxdepth arguments.

The example below works fine with find:

$ find2perl . -mindepth 2 -maxdepth 2 -name "*txt" -type f
Unrecognized switch: -mindepth

Questions:

  • Does find2perl support such functionality?
  • If so, how can I specify mindepth and maxdepth?
  • 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-06-14T10:25:07+00:00Added an answer on June 14, 2026 at 10:25 am

    File::Find::Rule has these options, and it has a command line program findrule.

    If you want to do it with File::Find, you can implement maxdepth by checking the depth of the file and setting $File::Find::prune when you’ve gone too deep. mindepth is similar, but you return from your function early. I’m feeling lazy this morning, so I’ll leave the coding to someone else.

    UPDATE: Somebody else did the programming, namely File::Find::Rule. Here’s the code they use.

    my $maxdepth = 2;
    my $mindepth = 2;
    my $topdir   = "something/something/something";
    sub wanted {
        # figure out the relative path and depth
        my $relpath = $File::Find::name;
        $relpath =~ s{^\Q$topdir\E/?}{};
        my $depth = File::Spec->splitdir($relpath);
    
        defined $maxdepth && $depth >= $maxdepth
           and $File::Find::prune = 1;
    
        defined $mindepth && $depth < $mindepth
           and return;
    
        ...your code goes here...
    }
    
    find \&wanted, $topdir;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

don't know if the title describes anything about what I'm trying to say but
Don't think that I'm mad, I understand how php works! That being said. I
I don't know how better to describe this. So take this example. var a
Don't know a whole lot about streams. Why does the first version work using
(Don't know if this is strictly on-topic, but I don't see any better Stack
I don't have much knowledge about the IPv6 protocol, so sorry if the question
Don't know if it matters, but the msg.d is about 300 rows long. I
Don't get me wrong PDO is great but what I don't like about it,
Don't know much about encryption... Say I'm preparing a SAML request to submit to
(Don't care about the version. IE or not IE.)

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.