How to watch for file creation/deletion?


 
Thread Tools Search this Thread
Top Forums Programming How to watch for file creation/deletion?
# 1  
Old 11-12-2007
How to watch for file creation/deletion?

How do I write a C program that will watch a directory for file creation/deletion? Maybe it would receive a signal when someone creates a file?

thanks,
Siegfried
# 2  
Old 11-12-2007
Quote:
Originally Posted by siegfried
Maybe it would receive a signal when someone creates a file?
Not by default.

This, unfortunately requires polling, and the simplest way would be to monitor the modification time of the directory the files are supposed to appear in.

Not a good thing to do on an NFS mounted file system, unless you had the polling process on the same machine as the NFS share and then used some form of IPC to notify clients.
# 3  
Old 11-12-2007
At http://os.cqu.edu.au/docs/kernel-doc...on/dnotify.txt I found an example. It seems to work for detecting file creation on fedora but not cygwin.

Is using F_NOTIFY as a parameter for fnctl the most standard way of doing this? Someone else said I should be using dbus but I don't know what that is.

Siegfried
# 4  
Old 11-12-2007
The clue is in the name, "Linux Directory Notification".

Cygwin is not Linux.

I have checked NetBSD 2 and Solaris 7 and neither of them support this.
# 5  
Old 11-13-2007
Why not just readdir? Maintain a list of files you get each time and a new file is one that you get in readdir, but not in your list. Of course, if your directory is going to have thousands of files, it isn't a good idea.

@Porter,
Won't the directory modification time change when a file is deleted as well?

Perhaps a program that checks for dir modified time and checks against a maintained a list of files if the mtime has changed...
# 6  
Old 11-13-2007
Quote:
Originally Posted by blowtorch
@Porter,
Won't the directory modification time change when a file is deleted as well?
Yes so cheapest thing to do is monitor that single date, then if that changes delve deeper to find what actually changed.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Emergency UNIX and Linux Support

User id creation/deletion - notification

Can someone help me with a shell script that will send an email to a set of email ids when a user id is created or deleted on AIX system. Also, if the script can let the admin know when a particular user id's password will expire. (4 Replies)
Discussion started by: ggayathri
4 Replies

2. Shell Programming and Scripting

Notification of user id creation/deletion

Can someone help me with a shell script that will send an email to a set of email ids when a user id is created or deleted on AIX system. Also, if the script can let the admin know when a particular user id's password will expire. (2 Replies)
Discussion started by: ggayathri
2 Replies

3. Shell Programming and Scripting

File content deletion

Hi Everyone, There are certain files under a folder 'ABC' and the entries for these files are there in another file(fname) under a different folder 'XYZ'. I want to compare the folder contents(ABC) with the file(fname) contents and delete the mismatching / non-existing ones from the file,... (4 Replies)
Discussion started by: swasid
4 Replies

4. Shell Programming and Scripting

want file to regenerate after deletion

I looked into the sticky bit, but I think, if possible, that I would prefer to have the file recreate itself after deletion. The file is several directories deep, and from time to time the top level directory will be trashed. I need the file to recreate after this. Is it possible to perhaps... (13 Replies)
Discussion started by: glev2005
13 Replies

5. UNIX for Dummies Questions & Answers

Watch and copy a file

I need to write a simple shell script to watch a file in a directory and copy immedietly any files in that directory to another oldfiles directory once and later in the evening delete the file from the original directory. File A arrives in dir1 at 8.00AM Watch the file in dir1 and copy the file... (2 Replies)
Discussion started by: cravie
2 Replies

6. UNIX for Dummies Questions & Answers

Watch for File on Windows share using Shell Script

I want to poll a particular file on a Windows shared drive using shell script and copy it to a Unix directory if present. Step wise execution: 1) Poll/watch for a file in the following location on Windows share: (SRC_DIR=\\mum\dharmesh\research\ST_DXR_20080821 to DXR.xls) 2) If present,... (1 Reply)
Discussion started by: dharam_v
1 Replies

7. Shell Programming and Scripting

Prompting for file deletion?

I got help in another forum but now I need further help so I figured I'd ask here. I had to write a script to delete certain filenames of certain size. I got this far.. find . -size 110c -name "*testing*" -print | xargs -n 1 rm -i It finds the correct files, but the prompts to delete are all... (2 Replies)
Discussion started by: NycUnxer
2 Replies

8. UNIX for Dummies Questions & Answers

file deletion problem

I am using unix via telnet ssh and i have a problem I was testing the server. I made a directory. Transfered a file from an ftp to it. Opened the file with the vi text editor --This where my problem came..... I tried deleting the file using rm somefile.htm when is typed ls i noticed that... (2 Replies)
Discussion started by: shdwsclan
2 Replies

9. UNIX for Dummies Questions & Answers

large file deletion

OS: Solaris 8 I deleted a large file (around 13 Gigs) from my system. But the output of df -k remains the same. The capacity % is constant. However one strange thing is happening- My available space is decreasing, my used space in increasing (The opposite should happen). This is happening... (2 Replies)
Discussion started by: run_time_error
2 Replies

10. UNIX for Dummies Questions & Answers

Deletion of File in Unix

Hi there guys. I'm quite new in using unix and just recently experienced missing file problem. Someone accidentally or likely intentionally deleted one specific folders that contains important file. Now my question is, can any other user aside from root can do such action? Please help. ... (2 Replies)
Discussion started by: rhomel101
2 Replies
Login or Register to Ask a Question