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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:04:10+00:00 2026-05-27T17:04:10+00:00

How can i list all files in a directory . I want only the

  • 0

How can i list all files in a directory . I want only the files in root directory.If there is any directory inside the root directory i want to skip those directories and files in them.
Now am using this code

 $folderPath  = file_directory_path().'/lexalytics/';
    if ($handle = opendir($folderPath)) {
        $result .=  '<div><ul>';
        while (false !== ($entry = readdir($handle))) {
            if ($entry != "." && $entry != "..") {
                $result .=  "<li><a href=../".$folderPath.$entry.">".$entry."</a>\n</li>";
            }
        }
        $result .= '</ul></div>';
        closedir($handle);
    }

But it lists subdirectories and files in them.
how can avoid those? Pls help me

  • 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-27T17:04:10+00:00Added an answer on May 27, 2026 at 5:04 pm

    Try this code

    $folderPath  = file_directory_path().'/lexalytics/';
        $handle = @opendir($folderPath) or die("Unable to open $path");
        $result .=  '<div><ul>';
        // Loop through the files
        while ($entry = @readdir($handle)) {
            if(is_file($folderPath.$entry)) {
               $result .= "<li><a href=../".$folderPath.$entry.">".$entry."</a>\n</li>";
            }
        }
        $result .= '</ul></div>';
        closedir($handle);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried to recursively get all files and folder list.But I can only get
I have a directory for which I want to list all the .doc files
How can I restrict only .cor files to be added to the list. The
git 1.7.12 I want to mark all files below a given directory as assume-unchanged.
I want to find all excel files within a directory structure using recursion. The
I have all filenames of a directory in a list named files. And I
I want to release all open files and directories forecefully my program has opened
Possible Duplicate: PHP list all files in directory ive got a cron job running
I'm making a script to list all the files in a directory. The user
SELECT name FROM sys.databases -- this can list all database name in the server

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.