php讀取指定目錄資料夾下所有檔名

2021-07-09 12:26:10 字數 529 閱讀 2643

方法1

<?php

$dir=dirname(__file__)."/../cache_hotwords/";//這裡輸入其它路徑

//php遍歷資料夾下所有檔案

$handle=opendir($dir.".");

//定義用於儲存檔名的陣列

$array_file = array();

while (false !== ($file = readdir($handle)))

}closedir($handle);

print_r($array_file);

?>

方法2<?php

$dir="e:/video"; //這裡輸入其它路徑

//php遍歷資料夾下所有檔案

$handle=opendir($dir.".");

echo "檔案:

";while (false !== ($file = readdir($handle)))

}closedir($handle);

?>

讀取指定資料夾下的所有檔案

c 怎樣讀取windows資料夾名和該資料夾中的excel表中的資料,並把讀到的資料夾名和excel表中的資料作為資料向插入到sql sever2000的資料表中 private void button1 click 2 object sender,system.eventargs e privat...

遍歷讀取指定資料夾下指定型別的所有檔案

經常碰到朋友,尤其是初學者對指定資料夾下指定型別檔案的讀取很困惑,這裡,我把自己經常用的程式貼出來,供初學者學些 include stdafx.h include windows.h include include include iostream using namespace std typed...

GoLang 讀取指定資料夾下的檔案目錄資訊

基礎語法 var fileinfo os.fileinfo var err error var relativepath string if fileinfo,err ioutil.readdir relativepath err nil 使用 fileinfo 變數引數名稱 說明備註 relati...