DELPHI 반복 파일 코드
procedure MakeFileList(Path,FileExt:string;var List:TStringList);
//Path 。
//FileExt '.exe'
//List
//2012-12-13
var
sch:TSearchrec;
begin
if List=nil then List:=TStringlist.Create;
Path:=Trim(Path);
if Path[Length(Path)] <> '\' then Path := Path+ '\';
if not DirectoryExists(Path) then
begin
List.Clear;
exit;
end;
if FindFirst(Path + '*', faAnyfile, sch) = 0 then
begin
repeat
Application.ProcessMessages;
if ((sch.Name = '.') or (sch.Name = '..')) then Continue; //
if DirectoryExists(Path+sch.Name) then // ,
begin
MakeFileList(Path+sch.Name,FileExt,List);
end
else
begin
if (UpperCase(extractfileext(Path+sch.Name)) = UpperCase(FileExt)) or (FileExt='.*') then
List.Add(Path+sch.Name);
end;
until FindNext(sch) <> 0;
SysUtils.FindClose(sch);
end;
end;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
비귀속 이차수(전차, 중차, 후차, 잎 노드의 계산)#pragma once #include<iostream> #include<queue> #include<stack> using namespace std; template<class T> struct BinaryTree...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.