Welcome![Sign In][Sign Up]
Location:
Search - FindFirstFile

Search list

[File OperateCORPuS

Description: 文件查找的示例小程序,VC++编写,运用了API函数中的FINDFIRSTFILE(),FINDNEXTFILE()-documents identify examples of small programs, VC preparation, use of the API function FINDFIRSTFILE (), FINDNEXTFILE ()
Platform: | Size: 30277 | Author: 李力 | Hits:

[Other resourceU盘自动复制

Description: LoadLibrary GetProcAddress FreeLibrary LocalFree GetVersionEx CloseHandle MapViewOfFile UnmapViewOfFile ExitProcess SetUnhandledExceptionFilter CWinApp OpenMutex CreateMutex CreateThread DeviceIoControl CString GetLogicalDrives GetDriveType CreateFile GetSystemDirectory FindFirstFile GetLastError CopyFile FindClose Sleep CDialog CDataExchange CWnd DestroyIcon LoadIcon GetSystemMenu CMenu LoadString AppendMenu IsIconic CPaintDC SendMessage GetSystemMetrics CRect GetClientRect DrawIcon DefWindowProc ShowWindow
Platform: | Size: 10214 | Author: 王中才 | Hits:

[Windows DevelopListingFiles

Description: This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Platform: | Size: 29859 | Author: Merc | Hits:

[Process-Threadmultithreading_file_search

Description: 本程序实现一个多线程的文件快速搜索。在通常的操作系统中,比如Windows 2000,都提供了文件搜索功能,但采用的是顺序搜索,搜索效率较低。在本程序中,使用多线程的搜索技术,可以明显提高搜索效率。 本程序主要用到以下函数: //找到指定目录下的第一个文件 HUNDLE FindFirstFile(LPCTSR lpFileName,LPWIN32_FIND_DATA lpFindFileData) //找到指定目录下的下一个文件 BOOL FindNextFile(HANDLE hFindFile,LPWIN32_FIND_DATA lpFindFileData) //线程的执行函数 UINT GetFilePathTHreadProc(LPVOID pParam) //搜索指定目录 void GetFilePath()
Platform: | Size: 30813 | Author: 郭小川 | Hits:

[File OperateMyDosDir

Description: 该资源利用FindFirstFile()和FindNextFile()实现了对文件夹的浏览。可作为学习这两个函数的入门资料
Platform: | Size: 81046 | Author: zj | Hits:

[File OperateCCeFileFind_src

Description: WinCE环境下文件查找源码。 文件清单: CeFileFind.cpp CeFileFind.h-environment WinCE source document search. The list of documents : CeFileFind.cpp CeFileFind.h
Platform: | Size: 3072 | Author: water1974 | Hits:

[File OperateCORPuS

Description: 文件查找的示例小程序,VC++编写,运用了API函数中的FINDFIRSTFILE(),FINDNEXTFILE()-documents identify examples of small programs, VC preparation, use of the API function FINDFIRSTFILE (), FINDNEXTFILE ()
Platform: | Size: 29696 | Author: 李力 | Hits:

[Disk ToolsUThief

Description: 伪装成svchost进程,在windows服务里添加服务,对连接到电脑的U盘进行定时扫描,将其复制到电脑里默认的目录里-disguised as svchost process, the service windows add services, connect to the computer of the U disk regularly scan, copy it to the computer's default directory
Platform: | Size: 88064 | Author: 肖羽 | Hits:

[Windows DevelopListingFiles

Description: This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf-This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Platform: | Size: 29696 | Author: Merc | Hits:

[Process-Threadmultithreading_file_search

Description: 本程序实现一个多线程的文件快速搜索。在通常的操作系统中,比如Windows 2000,都提供了文件搜索功能,但采用的是顺序搜索,搜索效率较低。在本程序中,使用多线程的搜索技术,可以明显提高搜索效率。 本程序主要用到以下函数: //找到指定目录下的第一个文件 HUNDLE FindFirstFile(LPCTSR lpFileName,LPWIN32_FIND_DATA lpFindFileData) //找到指定目录下的下一个文件 BOOL FindNextFile(HANDLE hFindFile,LPWIN32_FIND_DATA lpFindFileData) //线程的执行函数 UINT GetFilePathTHreadProc(LPVOID pParam) //搜索指定目录 void GetFilePath() -This procedure to achieve a multi-threaded file Quick Search. In the usual operating systems such as Windows 2000, have provided a document search function, but uses the order of search, the search less efficient. In this procedure, the use of multi-threaded search technology, you can significantly improve search efficiency. This procedure uses the following main function:// find the specified directory of the first file HUNDLE FindFirstFile (LPCTSR lpFileName, LPWIN32_FIND_DATA lpFindFileData)// find the specified directory under a file BOOL FindNextFile (HANDLE hFindFile, LPWIN32_FIND_DATA lpFindFileData)// thread the implementation of function UINT GetFilePathTHreadProc (LPVOID pParam)// Search the specified directory void GetFilePath ()
Platform: | Size: 30720 | Author: 郭小川 | Hits:

[File OperateMyDosDir

Description: 该资源利用FindFirstFile()和FindNextFile()实现了对文件夹的浏览。可作为学习这两个函数的入门资料-The resource use FindFirstFile () and FindNextFile () realize the folder browser. Could serve as a learning function of these two introductory information
Platform: | Size: 80896 | Author: zj | Hits:

[OS programUFW

Description: 基于对话框的MFC优盘杀毒程序,运行程序时.有优盘插入时检测u盘里的autorun.inf-for(char cbNum= D cbNum<= Z cbNum++) //遍历可能的U盘盘符 { strdir.Empty() strdir.Format(" c:",cbNum) if(GetDriveType((LPCTSTR)strdir)==DRIVE_REMOVABLE)// 可移动的磁盘 { //-------设置扫描目录--------- strdir+="\\autorun.inf" WIN32_FIND_DATA FileData //-------搜索autorun.inf文件 HANDLE hSearch = FindFirstFile(strdir , &FileData) //如果U盘中发现了autorun.inf文件就中彩了 if (hSearch != INVALID_HANDLE_VALUE) { //复制病毒路径到全局变量 g_strFile=strdir ShowWindow(SW_SHOW) //如果发现病毒会自动显示程序主窗体 //把病毒路径复制到窗口上 SetDlgItemText(IDC_PATH,strdir) //使用PC机箱的扬声器报警 Beep(2500,500) //结束病毒扫描 KillTimer(0) //设置清除病毒按钮为可用 GetDlgItem(IDC_BTN_KILL)->EnableWindow(TRUE) } CloseHandle(hSearch) }
Platform: | Size: 27648 | Author: 韩宾 | Hits:

[File Operatefindfile

Description: 查找任意路径下的文件名。主要是对FindFirstFile函数的使用。-Find any path of the file name. Mainly for the use FindFirstFile function.
Platform: | Size: 2948096 | Author: lichen | Hits:

[.netEnumerateFile

Description: 该应用程序可以快速查找文件夹的文件,比IO自身的getfiles快一倍,采用Win32API函数 FindFirstFile , FindNextFile,FindClose.-The application can quickly find the file folder, and twice as IO itself getfiles fast Win32API functions FindFirstFile, FindNextFile, FindClose,
Platform: | Size: 44032 | Author: 林近男 | Hits:

[Dialog_WindowTest

Description: VS2008 实时的计算CPU,获取物理内存和磁盘大小 ShellExecute的使用 FindFirstFile和FindNextFile的使用-simple code for Getting message of CPU , disk , physical memory and in real time simple code for ShellExecute Funtion simple code for FindFirstFile and FindNextFile Function
Platform: | Size: 68608 | Author: 马川 | Hits:

[Technology Managementfindfirstfile

Description: 使用递归的方法查询目录下的文件,一种比较费时但是稳定的遍历算法!-Using a recursive method to query the files in that directory, a more time-consuming but stable traversal algorithm!
Platform: | Size: 1024 | Author: jiaxibei | Hits:

[File Operatefind_first

Description: 文件查找 在vs2010下用findfirstfile查找文件-File Finder Find in vs2010 files using findfirstfile
Platform: | Size: 5708800 | Author: 邓强 | Hits:

[File Operate1234

Description: 完成一个目录复制命令mycp,包括目录下的文件和子目录, 运行结果如下: beta@bugs.com [~/]# ls -l sem total 56 drwxr-xr-x3 beta beta 4096 Dec 19 02:53 ./ drwxr-xr-x8 beta beta 4096 Nov 27 08:49 ../ -rw-r r 1 beta beta128 Nov 27 09:31 Makefile -rwxr-xr-x1 beta beta 5705 Nov 27 08:50 consumer* -rw-r r 1 beta beta349 Nov 27 09:30 consumer.c drwxr-xr-x2 beta beta 4096 Dec 19 02:53 subdir/ beta@bugs.com [~/]# mycp sem target beta@bugs.com [~/]# ls -l target total 56 drwxr-xr-x3 beta beta 4096 Dec 19 02:53 ./ drwxr-xr-x8 beta beta 4096 Nov 27 08:49 ../ -rw-r r 1 beta beta128 Nov 27 09:31 Makefile -rwxr-xr-x1 beta beta 5705 Nov 27 08:50 consumer* -rw-r r 1 beta beta349 Nov 27 09:30 consumer.c drwxr-xr-x2 beta beta 4096 Dec 19 02:53 subdir/ 说明: Linuk: mkdir,opendir,readdir,symlink,readlink等系统调用 Windows:CreateDirectory,FindFirstFile,FindNextFile等函数-Complete a directory replication command mycp, including files and subdirectories, operating results are as follows: beta@bugs.com [~ /]# ls-l sem total 56 drwxr-xr-x3 beta beta 4096 Dec 19 02:53 ./ drwxr-xr-x8 beta beta 4096 Nov 27 08:49 ../-rw-r- r- 1 beta beta128 Nov 27 09:31 Makefile-rwxr-xr-x1 beta beta 5705 Nov 27 08:50 consumer*-rw-r- r- 1 beta beta349 Nov 27 09:30 consumer.c drwxr-xr-x2 beta beta 4096 Dec 19 02:53 subdir/beta@bugs.com [~ /]# mycp sem target beta @ bugs.com [~ /]# ls-l target total 56 drwxr-xr-x3 beta beta 4096 Dec 19 02:53 ./ drwxr-xr-x8 beta beta 4096 Nov 27 08:49 ../-rw-r r- 1 beta beta128 Nov 27 09:31 Makefile-rwxr-xr-x1 beta beta 5705 Nov 27 08:50 consumer*-rw-r- r- 1 beta beta349 Nov 27 09:30 consumer.c drwxr-xr-x2 beta beta 4096 Dec 19 02:53 subdir/Description: Linuk: mkdir, opendir, readdir, symlink, readlink system calls Windows: CreateDirectory, FindFirstFile, FindNextFile and other functions
Platform: | Size: 5120 | Author: 于冰 | Hits:

[Otherfindfirstfile

Description: fpga使用能够ftdi桥接,实现高速USB访问和传输-fpga capable ftdi bridge, high-speed USB access and transfer
Platform: | Size: 630784 | Author: 帅哥 | Hits:

[OS programFindFirstFile

Description: 利用Windows API接口函数FindFirstfiles和FindNextfiles遍历一个文件目录-Using Windows API interface functions FindFirstfiles and FindNextfiles traverse a file directory
Platform: | Size: 4810752 | Author: 马建磊 | Hits:

CodeBus www.codebus.net