首页
社区
课程
招聘
编程,对文件存盘时,依次调用的api有什么
发表于: 2004-10-19 22:55 4705

编程,对文件存盘时,依次调用的api有什么

2004-10-19 22:55
4705
1,CreateFileA
2,Writefile
还有没有,记得应该有个关闭文件指针的api吧,不知道是什么了

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 1
支持
分享
最新回复 (4)
雪    币: 301
活跃值: (300)
能力值: ( LV9,RANK:290 )
在线值:
发帖
回帖
粉丝
2
如果用CloseFile关闭后,再用其它软件打开这个文件时,就不会什么还有其他程序调用它了吧
2004-10-19 22:58
0
雪    币: 301
活跃值: (300)
能力值: ( LV9,RANK:290 )
在线值:
发帖
回帖
粉丝
3
The CloseHandle function closes an open object handle.

BOOL CloseHandle(

    HANDLE hObject         // handle to object to close  
   );       

Parameters

hObject

Identifies an open object handle.

Return Values

If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.

Remarks

The CloseHandle function closes handles to the following objects:

?Console input or output
?Event file
?File mapping
?Mutex
?Named pipe
?Process
?Semaphore
?Thread
?Token (Windows NT only)

CloseHandle invalidates the specified object handle, decrements the object's handle count, and performs object retention checks. Once the last handle to an object is closed, the object is removed from the operating system.
This function does not close module objects.
Use CloseHandle to close handles returned by calls to the CreateFile function. Use FindClose to close handles returned by calls to the FindFirstFile function.
Closing an invalid handle raises an exception. This includes closing a handle twice, not checking the return value and closing an invalid handle, and using CloseHandle on a handle returned by FindFirstFile.
2004-10-20 19:49
0
雪    币: 7
活跃值: (30)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
4
最初由 clide2000 发布
如果用CloseFile关闭后,再用其它软件打开这个文件时,就不会什么还有其他程序调用它了吧


什么意思?
:D :D
2004-10-20 23:25
0
雪    币: 1580
活跃值: (72)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
最初由 clide2000 发布
如果用CloseFile关闭后,再用其它软件打开这个文件时,就不会什么还有其他程序调用它了吧


不会了!
2004-10-21 08:30
0
游客
登录 | 注册 方可回帖
返回
//