関連記事
- Delphi5をWindows7 64ビット環境に突っ込んでみた 【2011年01月15日(土)】
- NET FRAMEWORKのソケット通信 【2010年11月30日(火)】
- 不具合じゃ不具合じゃ! 【2008年05月28日(水)】
- IXMLDOMNodeの検索PGサンプル 【2008年05月22日(木)】
- IXMLDOMDocumentのインスタンス 【2008年01月30日(水)】
ファイルリストの取得の必要性が出てきたもんで,書き倒してみました
-
ワイルドカード対応
深い階層のフォルダ内検索と指定フォルダのみ(深階層は無視)の検索
ここにも書いておきます
御自由にドゾー(バグってたら,連絡ください(汗)
手続き名
Get_FileList(sPath:String; slFList:TStringList; wildStr : string = ”; dirFl : Bool = false);
引数
-
sPath:String
検索を開始するフォルダ名
slFList:TStringList
検索結果を格納するTStringListクラスのインスタンス
wildStr : string = ”
ワイルドカード “*.*”とか,”a*.txt”とか,OK!省略可能.省略時は “*.*”と同等
dirFl : Bool = false
深階層のフォルダを検索するかのフラグ(true:深階層を追っかける, false:追っかけない)
省略可能.省略時はfalse
//*********************************************** //ファイルリストを取得(主処理@再帰を利用) // //*********************************************** procedure Get_FileListCore(sPath:String; slFList:TStringList; wildStr : string; dirFl : Bool); var tmpFPath : String; SRec: TSearchRec; begin if sPath[length(sPath)] <> '\' then begin sPath := sPath + '\'; end; if wildStr = '' then begin tmpFPath := sPath + '*.*'; end else begin tmpFPath := sPath + wildStr; end; if FindFirst(tmpFPath, faAnyFile or faDirectory, SRec) = 0 then begin repeat if not ((SRec.Name = '.') or (SRec.Name = '..')) then begin if (SRec.Attr and faDirectory) = 0 then begin slFList.add(sPath + SRec.Name); end else begin if dirFl = true then begin Get_FileListCore(sPath + SRec.Name + '\', slFList, wildStr, dirFl); end; end; end; until FindNext(SRec) <> 0; FindClose(SRec); end; end; //*********************************************** //ファイルリストを取得 // //*********************************************** procedure Get_FileList(sPath:String; slFList:TStringList; wildStr : string = ''; dirFl : Bool = false); begin slFList.Clear; Get_FileListCore(sPath, slFList, wildStr, dirFL); end;
コメント
備蓄米放出へ準備、流通不足で初 政府、買い戻し条件に売り出し
【#大相撲】 横綱 照ノ富士 引退の意向を固める
【#日向灘地震】割れ残り部が依然健在じゃし.怖いわなぁ
【#大地震】宮崎に大地震キタ━(゚∀゚)━!!(25/1/13)
【#大雪】宮崎市に降雪予報キター(25/1/11)
【#2025】あけおめ~ 2025年が始まったらしい...ドロドロドロ
2024年が終わりますなぁ 1年ありがとうございました