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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T04:22:11+00:00 2026-05-11T04:22:11+00:00

If you scan a folder containing other folders AND files, how do you get

  • 0

If you scan a folder containing other folders AND files, how do you get rid of . and .. and files? How do you put in array only folders WITHOUT . and ..? I would like to use regular expression, but I’m newbie and I can’t get it right. My code is now this but doesn’t work:

if(fnmatch(‘\.{1,2}’,$dir_array[$i]) || is_file($dir_array[$i]){
unset($dir_array[$i]);
}else{ //other code
}

  • 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. 2026-05-11T04:22:11+00:00Added an answer on May 11, 2026 at 4:22 am

    You are confusing fnmatch and regular expressions in your code. To get all files and directories except the special ones, use this:

    $dir_array = array_diff($dir_array, array('.', '..')); 

    Alternatively, if you iterate the array anyway, you can test each element like this:

    foreach ($dir_array as $name) {     if (($name != '..') && ($name != '.')) {         // Do stuff on all files and directories except . ..         if (is_dir($name)) {             // Do stuff on directories only         }     } } 

    In php<5.3, you can exclusively use a callback function, too:

    $dir_array = array_filter($dir_array,   create_function('$n', 'return $n != '.' && $n != '..' && is_dir($n);')); 

    (See Allain Lalonde’s answer for a more verbose version)

    Since php 5.3, this can be written nicer:

    $dir_array = array_filter($dir_array,   function($n) {return $n != '.' && $n != '..' && is_dir($n);}); 

    Finally, combining array_filter and the first line of code of this answer yields an (insignificantly) slower, but probably more readable version:

    $dir_array = array_filter(array_diff($dir_array, array('.', '..')), is_dir); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 145k
  • Answers 145k
  • 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 First of all, you have a problem. Disabled form elements… May 12, 2026 at 8:45 am
  • Editorial Team
    Editorial Team added an answer SELECT TOP 50 q.question_id, q.title, t.tag FROM tags t INNER… May 12, 2026 at 8:45 am
  • Editorial Team
    Editorial Team added an answer If you want to retrieve os environment variable use System.getenv()… May 12, 2026 at 8:45 am

Related Questions

I use Visual Studio to develop unmanaged C++ apps for a living. Is there
I'm building the world's simplest library application. All I want to be able to
I think questions like this are the reason why I don't like working with
The specification of HTML4.01 ( http://www.w3.org/TR/html401/struct/tables.html#adef-summary ) states that the table summary attribute should

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.