|
NtQueryInformationFile
I'm using NtQueryInformationFile with FileNameInformation to get the name of a file from a remote open file handle.
This also does not work:
UCHAR b[512];
NtQueryInformationFile(handle, NULL, &b, 512, FileNameInformation);
The handle is correct.
Any ideas?
Stu
__________________
if ($ENV{'QUERY_STRING'} eq "Afrow UK") {
print "$ENV{'QUERY_STRING'} rocks!";
} else {
print qq~$ENV{'QUERY_STRING'} sucks :)~;
}
Last edited by Afrow UK; 07-05-2007 at 11:31 AM..
|