List of file listings (cool)

Source: Internet
Author: User
[Program Language] Php

[Source Source] Http://px.sklar.com
[Feature description] The script reads the file names from a specified directory, returns them to the array, and includes the number of files.

The source code is as follows:

?
/*
This script read the filenames from a specified directory and returns them to an array.
The number of filenames is also returned.
Copyleft (L) 1999 Eric Persson, Eric@persson.tm, http://www.persson.tm/scripts/
*/
Function Searchdir ($basedir)
{
Global $filelisting, $number; Defines the two variables as global so they can is accessed from outside the function
Unset ($filelisting); Kills $filelisting in case it have been used earlier in the script
Unset ($number); Same as above
$handle =opendir ($basedir);
while ($file = Readdir ($handle)) {
if ($file = = "." or $file = = "...") {
}
else {
$filelisting []= "$basedir $file";
};
};
$number =sizeof ($filelisting); Gets the size of the array
};
Searchdir ("./"); Runs the function to search of the current directory
echo $filelisting [1]; Echos the second value in the array
Echo $number; Echos the size of the array
? >


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.