John Davidson

PHP read sub-directories and loop through files how to?

0 comments
Message:


I need to create a loop through all files in subdirectories. Can you please help me struct my code like this:



$main = "MainDirectory";
loop through sub-directories {
loop through filels in each sub-directory {
do something with each file
}
};


My Answer:
Sure! Here is an example code snippet in PHP that demonstrates how to loop through subdirectories and files within each subdirectory:

php
$main = "MainDirectory";

function loopThroughFiles($dir) {
$files = scandir($dir);

foreach($files as $file) {
if ($file != '.' && $file != '..') {
if (is_dir($dir . '/' . $file)) {
loopThroughFiles($dir . '/' . $file);
} else {
// Do something with each file
echo $dir . '/' . $file . "\n";
}
}
}
}

loopThroughFiles($main);


In this code snippet, the `loopThroughFiles` function is recursively called for each subdirectory found within the main directory. The function then loops through all files within each subdirectory and performs some action with each file (in this case, just echoing the file path). You can replace the `echo` statement with any action you want to perform with each file.

Rate this post

3 of 5 based on 2000 votes

Comments




© 2024 Hayatsk.info - Personal Blogs Platform. All Rights Reserved.
Create blog  |  Privacy Policy  |  Terms & Conditions  |  Contact Us