-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement NtQueryInformationFile Function #498
Comments
Sorry I'm just getting to this. I don't want to implement all 80+ structures this requires if not needed. Which of the FILE_INFORMATION_CLASS values do (did) you need? |
I just pushed a working build for some of the values. Please let me know which others you need, if any. See https://github.com/dahall/Vanara/blob/master/UnitTests/PInvoke/NtDll/NtDllTests.cs for example of use. |
…th test and extension method. (#498)
I only need this value. Thank you for your work! |
Cool. I already implemented that one and provided and example. |
Is your feature request related to a problem? Please describe.
I need to get information about the corresponding file based on the USN journal in the NTFS file system.
After searching the source code, I did not find the "NtQueryInformationFile" function. According to Microsoft's documentation https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/nf-ntifs-ntqueryinformationfile and https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ne-wdm-_file_information_class, I added this function manually.
Describe the additions or enhancements you'd like
Implement the "NtQueryInformationFile" function in "ntdll.dll"
Previous work
The text was updated successfully, but these errors were encountered: