I have a video application that uses a Wowza streaming server running on Windows. Currently, if a video file has an open stream, Windows locks the file a prevents me from deleting or modifying it. If I were to migrate the Wowza server to a Linux environment, would I be able to delete and modify video files with open streams?

Thanks!

link|improve this question

feedback

closed as off topic by Rob W, LarsTech, Erno, Brad Larson, ChrisF Dec 17 '11 at 23:42

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

Yes. On Linux (and other Unixes, such as Mac OS X), you can always delete file names. Files are deleted if there are no more names referring to them and when all handles to the file have been returned.

Locking on Linux (via flock) is advisory, i.e. both parties must participate.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.