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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T19:53:54+00:00 2026-05-18T19:53:54+00:00

I am trying to read a file name current.conf and then use the name

  • 0

I am trying to read a file name current.conf and then use the name of a folder saved in it to opendir(); when I open:

$file = fopen("current.conf","r");
$lines = fread($file,"10");
fclose($file);

$lines = "/".$lines."/";

echo $lines;

$dir=opendir($lines);

$files=array();
while (($file=readdir($dir)) !== false)
{
if ($file != "." and $file != ".." and $file != "index.php")
{
array_push($files, $file);
}
}
closedir($dir);

The current.conf has only one line in it:

2.1-2328

I am not able to open the folder that is named in the conf files. I have a feeling it has to do with the formatting of the conf file but not sure.

  • 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-18T19:53:55+00:00Added an answer on May 18, 2026 at 7:53 pm

    I suspect the directory doesn’t exist (or you don’t have the rights to read it), but without a specific error (opendir is most likely throwing an E_WARNING – check your logs, etc.)

    Incidentally, you could re-write your code to reduce its complexity as follows:

    <?php
        // Grab the contents of the "current.conf" file, removing any linebreaks.
        $dirPath = '/'.trim(file_get_contents('current.conf')).'/';
    
        $fileList = scandir($dirPath);
    
        if(is_array($fileList)) {
            foreach($fileList as $file) {
                // Skip the '.' and '..' in here as required.
                echo $file."\n";
            } 
        }
        else echo $dirPath.' cound not be scanned.';
    ?>
    

    In this instance the call to scandir will throw an E_WARNING.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to read a file name current.conf and then use the name
I am trying to read a file and then display the file in ASCII
I'm trying to read all lines of a file that are either all upper
I am trying to read file headers using java, I want to get file
I am trying to read file and split its line to get some context(Computer
I'm trying to read a file in my maven project at /src/main/resources/file.txt. I'm using
I'm trying to read a file line by line starting from a specific line
I am trying to read a file(temp.txt) placed under /root directory on remote host(ubuntu)
I am trying to read from file: The file is multiline and basically i
I am trying to read a file and the error i get is java.io.FileNotFoundException:

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.