注册 登录
编程论坛 新人交流区

这几个API在VB中如何使用?

ytmGring 发布于 2007-10-23 09:05, 306 次点击
Declare Function FindClose Lib "kernel32" Alias "FindClose" (ByVal hFindFile As Long) As Long

Declare Function FindFirstFile Lib "kernel32" Alias "FindFirstFileA" (ByVal lpFileName As String, lpFindFileData As WIN32_FIND_DATA) As Long

Declare Function FindNextFile Lib "kernel32" Alias "FindNextFileA" (ByVal hFindFile As Long, lpFindFileData As WIN32_FIND_DATA) As Long

我想用这几个API实查找查硬盘上所有文件
但不知道在VB中如何使用~
0 回复
1