| 76 | } |
| 77 | |
| 78 | NTSTATUS FilesAPI::DeleteFile(LPCWSTR FilePath) |
| 79 | { |
| 80 | UNICODE_STRING Path; |
| 81 | RtlInitUnicodeString(&Path, FilePath); |
| 82 | |
| 83 | OBJECT_ATTRIBUTES ObjectAttributes; |
| 84 | InitializeObjectAttributes(&ObjectAttributes, &Path, OBJ_CASE_INSENSITIVE, NULL, NULL); |
| 85 | |
| 86 | return ZwDeleteFile(&ObjectAttributes); |
| 87 | } |
nothing calls this directly
no outgoing calls
no test coverage detected