|
-
January 8th, 2008, 12:36 PM
#1
Kernel-Mode File Copying
Is there any function which can copy files using kernel-mode functions? I expected to find a function called ZwCopyFile, but it doesn't exist. How do you copy files?
-
January 8th, 2008, 12:57 PM
#2
Re: Kernel-Mode File Copying
Have you tried using ZwCreateFile, ZwReadFile and ZwWriteFile. Also make sure its not too early in the game if yours is a driver loading during boot process.
C++ is divine.
-
January 9th, 2008, 10:48 AM
#3
Re: Kernel-Mode File Copying
Thanks!
So apparently there is not direct copy routine... you need to read, write, read, write... right?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|