Which of the following is NOT a file manipulation system call in the Windows…
2018
Which of the following is NOT a file manipulation system call in the Windows operating system?
- A.
CreateFile()
- B.
ReadFile()
- C.
WriteFile()
- D.
CloseFile()
Attempted by 286 students.
Show answer & explanation
Correct answer: D
Windows file manipulation relies on specific API functions like CreateFile, ReadFile, and WriteFile. However, there is no CloseFile function; instead, developers must use CloseHandle to release file resources. Therefore, CloseFile is the option that does not exist.