Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 소니
- 파이어버드
- 기초
- Firebird
- 설치
- c#
- xml
- vb
- SDK
- 파라미터
- Visual Studio 2005
- Delphi
- WIN32 SDK
- 문자열
- 인스톨
- 델파이
- PostgreSQL
- 데이터베이스
- MFC
- MySQL
- SQL
- winsock
- 초보
- 시리얼 통신
- 셋업
- dll
- Visual Basic
- VB.NET
- 예제
- 입문
Archives
- Today
- Total
목록서브 폴더 (1)
프로그래밍 노트
[델파이] 지정한 폴더의 파일 리스트 가져오기(서브 폴더 검색 대응)
// 지정한 폴더의 파일 리스트 가져오기 : 서브 폴더 검색 대응 function FindFiles(const sPath, sMask: string; slFiles: TStringList; bSubDir: boolean): integer; var iFindResult: integer; srSchRec : TSearchRec; begin result := 0; iFindResult := FindFirst(sPath + sMask, faAnyFile - faDirectory, srSchRec); while iFindResult = 0 do begin slFiles.Add(sPath + srSchRec.Name); iFindResult := FindNext(srSchRec); end; FindClose(srS..
델파이
2009. 7. 13. 15:46