3

I just want to log all files wrote to CD-ROM/DVD disks, and the source file (file which it's copied from) - and I cannot depend anyway from the burnning software.

It's to know every file copied from the computer to any removable media.

John M. Wright
  • 4,477
  • 1
  • 43
  • 61
  • What operating system? Which auditing tools for your OS have you already looked at, and why didn't they work for you? – Bill Dec 22 '10 at 17:20
  • Windows. I'm currently working with FileSystemWatcher API - but according to the MSDN docs, it doesn't work with CD/DVD drives. – Bruno Moreira Guedes Dec 22 '10 at 23:39

1 Answers1

-1

Without depending on the burning software, you can't reliably know this information.

Jonathan Grynspan
  • 43,286
  • 8
  • 74
  • 104
  • I haven't any way to know what's the process/program which is burning the CD/DVD, and find what files have it openned? I don't know much about the burning process at Windows, but I think the burning software uses some kind of ISO filesystem image. So, may I find the image file anyway? – Bruno Moreira Guedes Dec 22 '10 at 23:43
  • That's not really a programming question anymore. – Jonathan Grynspan Dec 23 '10 at 01:15
  • May I have a programming way to detect burning software openning the ISO image file before start recording?? – Bruno Moreira Guedes Dec 23 '10 at 14:52
  • The `FileSystemWatcher` API might be able to note the creation of files with a .iso extension. But if you tell us *what you actually are trying to accomplish* we might be able to give you a more useful solution. – Jonathan Grynspan Dec 23 '10 at 15:41