Welcome![Sign In][Sign Up]
Location:
Search - readfile api

Search list

[Other resourceVCram

Description: VC++中使用内存映射文件处理大文件,文件操作是应用程序最为基本的功能之一,Win32 API 和MFC 均提供有支持 文件处理的函数和类,常用的有Win32 API 的CreateFile()、WriteFile()、 ReadFile()和MFC 提供的CFile 类等-VC use memory-mapped file handling large files, file manipulation application is the most basic function, MFC and Win32 API is available to support the document processing functions and classes, used the Win32 API CreateFile (), WriteFile (), ReadFile () and the MFC CFile type
Platform: | Size: 104003 | Author: victor | Hits:

[Telnet Clientclient

Description: This program is a simple named pipe client that demonstrates the API calls needed to successfully develop a basic named pipe client application. When this application successfully connects to a named pipe, the message \"This is a test\" is written to the server. There are four basic steps needed to implement a client: 1. Wait for a Named Pipe instance to become available using the WaitNamedPipe() API function. 2. Connect to the Named Pipe using the CreateFile() API function. 3. Send data to or receive data from the server using the WriteFile() and ReadFile() API functions. 4. Close the Named Pipe session using the CloseHandle() API functions.
Platform: | Size: 3509 | Author: sean zhang | Hits:

[WEB CodewinAPI_Sport_comm

Description: 实现串行通讯的相关API函数 API函数不仅提供了打开和读写通讯端口的操作方法,还提供了名目繁多的函数以支持对串行通讯的各种操作。 函数名 作用 CreateFile 打开串口 GetCommState 检测串口设置 SetCommState 设置串口 BuilderCommDCB 用字符串中的值来填充设备控制块 GetCommTimeouts 检测通信超时设置 SetCommTimeouts 设置通信超时参数 SetCommMask 设定被监控事件 WaitCommEvent 等待被监控事件发生 WaitForMultipleObjects 等待多个被监测对象的结果 WriteFile 发送数据 ReadFile 接收数据 GetOverlappedResult 返回最后重叠(异步)操作结果 PurgeComm 清空串口缓冲区,退出所有相关操作 ClearCommError 更新串口状态结构体,并清除所有串口硬件错误 CloseHandle 关闭串行口
Platform: | Size: 5323 | Author: liupengty | Hits:

[Exploithuanchong

Description: 用三种方式进行文件缓存的操作,并通过比较平均时间来了解文件缓存的工作原理,涉及的主要API函数有CreateFile,ReadFile和WriteFile,GetOverlappedResult函数
Platform: | Size: 95636 | Author: 郭浩 | Hits:

[Exploithuancun

Description: 用三种方式进行文件缓存的操作,并通过比较平均时间来了解文件缓存的工作原理,涉及的主要API函数有CreateFile,ReadFile和WriteFile,GetOverlappedResult函数
Platform: | Size: 168666 | Author: 郭浩 | Hits:

[Remote Control232_TCPIP

Description: 程序的最大缺陷:   Windows把硬件驱动的接口都进行了抽象和标准化,串口也不例外,大部分的设备都可以通过文件操作API进行存储控制,如:CreateFile、ReadFile、WriteFile等,其实很简单。网上有个SerialPort的类写得还不错,我就直接拿来用了,只做了小小的修改以满足我的要求。原本的类一次只能收发一个Byte,根据需要我改成了512 Byte,需要重点提出的是,当收发多字节数据时,数据的正确性和完整性更需要自己保证,因为串口协议标准只是定义在物理层和数据链路层,打个比方说,如果一次发送512 Byte,收到不一定是正确的512 Byte,所以自己要进行相关校验保证正确性,也可能不是一次就会完整的收到512 Byte,而是分多次收完所有数据,这时就要我们定义相关结构保证数据收发完整性。这些细节都是跟串口驱动的实现有关,读者感兴趣的话,可以查看相关文档。在这个应用程序中完全没有对这个问题进行防护处理,鉴于一次收发数据量小(512 Byte),并且只是自己的试验品,所以写得并不严谨,把数据收发理想为一次性正确收发,希望各位都能注意了。
Platform: | Size: 38910 | Author: Lee | Hits:

[Software EngineeringVCram

Description: VC++中使用内存映射文件处理大文件,文件操作是应用程序最为基本的功能之一,Win32 API 和MFC 均提供有支持 文件处理的函数和类,常用的有Win32 API 的CreateFile()、WriteFile()、 ReadFile()和MFC 提供的CFile 类等-VC use memory-mapped file handling large files, file manipulation application is the most basic function, MFC and Win32 API is available to support the document processing functions and classes, used the Win32 API CreateFile (), WriteFile (), ReadFile () and the MFC CFile type
Platform: | Size: 103424 | Author: victor | Hits:

[Telnet Clientclient

Description: This program is a simple named pipe client that demonstrates the API calls needed to successfully develop a basic named pipe client application. When this application successfully connects to a named pipe, the message "This is a test" is written to the server. There are four basic steps needed to implement a client: 1. Wait for a Named Pipe instance to become available using the WaitNamedPipe() API function. 2. Connect to the Named Pipe using the CreateFile() API function. 3. Send data to or receive data from the server using the WriteFile() and ReadFile() API functions. 4. Close the Named Pipe session using the CloseHandle() API functions.
Platform: | Size: 3072 | Author: sean zhang | Hits:

[DocumentswinAPI_Sport_comm

Description: 实现串行通讯的相关API函数 API函数不仅提供了打开和读写通讯端口的操作方法,还提供了名目繁多的函数以支持对串行通讯的各种操作。 函数名 作用 CreateFile 打开串口 GetCommState 检测串口设置 SetCommState 设置串口 BuilderCommDCB 用字符串中的值来填充设备控制块 GetCommTimeouts 检测通信超时设置 SetCommTimeouts 设置通信超时参数 SetCommMask 设定被监控事件 WaitCommEvent 等待被监控事件发生 WaitForMultipleObjects 等待多个被监测对象的结果 WriteFile 发送数据 ReadFile 接收数据 GetOverlappedResult 返回最后重叠(异步)操作结果 PurgeComm 清空串口缓冲区,退出所有相关操作 ClearCommError 更新串口状态结构体,并清除所有串口硬件错误 CloseHandle 关闭串行口
Platform: | Size: 5120 | Author: liupengty | Hits:

[OS programhuanchong

Description: 用三种方式进行文件缓存的操作,并通过比较平均时间来了解文件缓存的工作原理,涉及的主要API函数有CreateFile,ReadFile和WriteFile,GetOverlappedResult函数-Three way file cache operation, and by comparing the average time to understand the file cache
Platform: | Size: 1989632 | Author: 郭浩 | Hits:

[OS programhuancun

Description: 用三种方式进行文件缓存的操作,并通过比较平均时间来了解文件缓存的工作原理,涉及的主要API函数有CreateFile,ReadFile和WriteFile,GetOverlappedResult函数-Three way file cache operation, and by comparing the average time to understand the file cache
Platform: | Size: 2063360 | Author: 郭浩 | Hits:

[Hook apifilemon

Description:
Platform: | Size: 2048 | Author: 张京 | Hits:

[Remote Control232_TCPIP

Description: 程序的最大缺陷:   Windows把硬件驱动的接口都进行了抽象和标准化,串口也不例外,大部分的设备都可以通过文件操作API进行存储控制,如:CreateFile、ReadFile、WriteFile等,其实很简单。网上有个SerialPort的类写得还不错,我就直接拿来用了,只做了小小的修改以满足我的要求。原本的类一次只能收发一个Byte,根据需要我改成了512 Byte,需要重点提出的是,当收发多字节数据时,数据的正确性和完整性更需要自己保证,因为串口协议标准只是定义在物理层和数据链路层,打个比方说,如果一次发送512 Byte,收到不一定是正确的512 Byte,所以自己要进行相关校验保证正确性,也可能不是一次就会完整的收到512 Byte,而是分多次收完所有数据,这时就要我们定义相关结构保证数据收发完整性。这些细节都是跟串口驱动的实现有关,读者感兴趣的话,可以查看相关文档。在这个应用程序中完全没有对这个问题进行防护处理,鉴于一次收发数据量小(512 Byte),并且只是自己的试验品,所以写得并不严谨,把数据收发理想为一次性正确收发,希望各位都能注意了。
Platform: | Size: 38912 | Author: Lee | Hits:

[File OperateReadWriteAPI

Description: example of how to use WriteFile and ReadFile Api in delphi
Platform: | Size: 4096 | Author: Streamline | Hits:

[USB developusblpt

Description: 控制USB LPT的代码,通过WriteFile控制USB打印口-Read/Write USB LPT Port by ReadFile/WriteFile API,not by 0x378 I/O Port
Platform: | Size: 17408 | Author: 梁东 | Hits:

[Communicationcomapi

Description: 本人自写的精简易懂实用的API串口通信。把createfile,readfile writefile终于搞明白了。-it is one communication example on serial port by using windows API function.it is written by myself,so you can understand the communication process easily.
Platform: | Size: 1895424 | Author: yandong | Hits:

[VC/MFCVC

Description: 文件操作是应用程序最为基本的功能之一,Win32 API 和 MFC 均提供有支持文件处理的函数 和类,常用的有 Win32 API 的 CreateFile()、WriteFile()、ReadFile()和 MFC 提供的 CFile 类 等。一般来说,以上这些函数可以满足大多数场合的要求,但是对于某些特殊应用领域所需要的 动辄几十 GB、几百 GB、乃至几 TB 的海量存储,再以通常的文件处理方法进行处理显然是行不通 的。目前,对于上述这种大文件的操作一般是以内存映射文件的方式来加以处理的,本文下面将 针对这种 Windows 核心编程技术展开讨论。 -File operations is the application one of the most basic function, Win32 API and MFC are providing support for document processing functions and classes, commonly used in the Win32 API CreateFile (), WriteFile (), ReadFile () and the MFC CFile class provides and so on. In general, these functions can satisfy the requirements of most situations, but for some special applications frequently need several GB, hundreds of GB, and even a few TB of mass storage, then the usual method of dealing with file handling obviously does not work. Currently, for the general operation of such large files is the way memory mapped files to be processed, this article will focus on the following Windows core programming techniques such discussions.
Platform: | Size: 211968 | Author: chenjun | Hits:

[Browser Clientwebbrowser

Description: PB调用Microsoft web browser control使用方法-Webbrowser This program shows how to use the . It uses the Web Browser control s Design Mode to allow you to easily create HTML documents. Click here to download the PowerBuilder sample: WEBBROWSER.ZIP Win API Functions used: CloseHandle CreateFile GetDesktopWindow ReadFile ShellExecute
Platform: | Size: 233472 | Author: altob | Hits:

[Windows DevelopvivUsb

Description: vc通过ReadFile读取Hid设备数据。编译时需要ddk类库。-VC read the data from USB HID device by ReadFile API function. The project need the DDK when it been complier.
Platform: | Size: 4107264 | Author: 111111 | Hits:

[CommunicationsampleCom

Description: 封装了windows操作串口的几个API(CreateFile, ReadFile,WriteFile,SetComState)。串口的读写设置这几个操作都可以简单地只用关键一两个参数就能实现操作。也是一个很好的例子,我写这个之前查了不少资料,感觉非常麻烦,索性发出来给新手们作个样例-Windows serial COM port access class,it includes CreateFile, SetComState,ReadFile,WriteFile,CloseFile
Platform: | Size: 20480 | Author: | Hits:
« 12 »

CodeBus www.codebus.net