CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2006
    Posts
    86

    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?

  2. #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.

  3. #3
    Join Date
    Dec 2006
    Posts
    86

    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
  •  





Click Here to Expand Forum to Full Width

Featured