基本介紹
- 中文名:scandir
- 性質:科技
- 類別:計算機學
C++函式
#include <dirent.h>
#include <malloc.h>
int main()
{
struct dirent **namelist;
int n;
n = scandir(".", &namelist, 0, alphasort);
if (n < 0){
perror("not found\n");
}
else{
while(n--){
printf("%s\n", namelist[n]->d_name);
free(namelist[n]);
namelist[n] = nullptr;
}
free(namelist);
namelist = nullptr;
}
return 0;
}
PHP函式
語法
參數 | 描述 |
---|---|
directory | 必需。規定要掃描的目錄。 |
sort | 可選。規定排列順序。默認是 0 (升序)。如果是 1,則為降序。 |
context | 可選。規定目錄句柄的環境。context 是可修改目錄流的行為的一套選項。 |