Answers for "loop throught files in a directory"

PHP
1

bash list all files in directory and subdirectories

# Bash-specific

# syntax 
ls -R <file-or-directory-to-find>

# example
ls -R *hotographi*
Posted by: Guest on April-22-2020
3

php list all files in directory

scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] ) : array
Posted by: Guest on April-23-2020

Code answers related to "loop throught files in a directory"

Browse Popular Code Answers by Language