As the title states:
- My program opens a file.
- Something comes along and moves that file. Inode should be the same, but name is different.
- Close the file, then delete, but its not there anymore
So how can I detect that it has been moved and delete the correct filename?
Any ideas?
You could use inotify to detect a change to the old name (look for the IN_MOVE_SELF event). But if your real goal is simply to delete the file's name, you can just do that (using unlink(2)) immediately after opening the file. Unix file semantics will allow you to keep using the open file, and the data on disk will not actually be deleted until your handle is closed. And then no one will be able to rename the file.