hi, i need to overwrite a busy file (file that is used at the curent moment), i saw programs to delete such files so i think it is possible, would appreciate any help
Printable View
hi, i need to overwrite a busy file (file that is used at the curent moment), i saw programs to delete such files so i think it is possible, would appreciate any help
I would sincerely hope that you can't defeat the operating system's file locks. Why would you want to do that?
Obviously, an application that opens a file without sharing isn't written to tolerate the file's sudden disappearance or alteration. It may well crash the application.
In order to manage this, you'd have to operate on the disk from "under the hood" - outside the operating system (perhaps through SCSI commands directly on the controller), unless the OS has an open hole, which I would expect would be plugged.
If you did work at the controller level, you should expect errors that would crash the directory/partition of that drive - bugs you probably don't want to have to consider (the kind of thing that if you have to ask, you're not equipped to do it).
figured all out already ^^ *solved