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

The Archive Base Latest Questions

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

I have a directory which has say 10 .txt files. Open the directory using:

  • 0

I have a directory which has say 10 .txt files. Open the directory using:

$dir_handle = @opendir($path) or die("Unable to open $path"); 

I need to be able to read the files names of the text files, and then write all those file names to a master list with a | after each file name. I also do not want the masterlist.txt to be written inside itself lol. So the masterlist.txt is what is being written to with the file names of the .txt files.

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

    Loop over the directory with readdir(), and verify that each entry isn’t the master list or . or ... Write it to the file with file_put_contents().

    // If master.txt already exists, delete it.
    if (file_exists('master.txt')) {
      unlink('master.txt');
    }
    
    $dir_handle = @opendir($path) or die("Unable to open $path"); 
    while ($f = readdir($dir_handle)) {
      if ($f != '.' && $f != '..' && $f != 'master.txt') {
        file_put_contents('master.txt', $f . "|", FILE_APPEND);
      }
    }
    

    If you only want .txt files, use something like:

    if (preg_match('/^(.+)\.txt$/', $f)) {
      // it's a .txt file.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a variable which has the directory path, along with the file name.
I have a project directory which has an .acignore file containing: out/* The project
I have a directory to which a process uploads some .pdf files. This process
I have a git directory which contains the a whole bunch of files and
I have a method which takes a directory path as a string. In the
Let say I have a directory which is being hosted by Jetty or Apache
I have an directory, which has a lot of subdirectories. those subdirs sometimes even
I have a project which has the following directory structure. root --include ----module1 ----module2
I have, let's say, www.website.org/folder/ which inside has the following .htaccess RewriteEngine On RewriteRule
In our web application we have a directory which resides outside of the project.

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.