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?
Answer: D. CloseFile() — Windows file manipulation relies on specific API functions like CreateFile, ReadFile, and WriteFile. However, there is no CloseFile function; instead,…
- A.
CreateFile()
- B.
ReadFile()
- C.
WriteFile()
- D.
CloseFile()
Attempted by 803 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.
A video solution is available for this question — log in and enroll to watch it.
Loading lesson…