vote up 1 vote down star
1

I get files coming in via FTP to a directory.

I have a another application watching the above directory and needs to work on the file in the directory. The problem is the FTP can take a few minutes to complete and trying to determine when this operation is completed so i can work on the file.

I have no control on the company sending the files via FTP.


This is an exact duplicate

http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete

flag

closed as exact duplicate by Chris Marasti-Georg Oct 24 '08 at 13:59

5 Answers

vote up 2 vote down

Keep trying to open the file with FileShare.None, which is an exclusive lock, at periodic intervals (say every 15 sec). Eventually you'll get the lock once the FTP transfer is complete.

link|flag
vote up 1 vote down

I use something like this:

    public static bool IsFileLocked(string fileName)
    {
        try
        {
            // attempt to open the file
            FileInfo fi = new FileInfo(fileName);
            using (FileStream inputStream = fi.Open(FileMode.Open, FileAccess.Read, FileShare.None))
            {
                return false;
            }
        }
        catch (IOException)
        {
            return true;
        }
    }
link|flag
vote up 0 vote down

Depending on your specific needs, you could use a FileSystemWatcher.

Or

You could monitor the size of the file, if it stops increasing after X number of polls, you can consider it complete.

link|flag
vote up 0 vote down

I have solved this type of problem in the past by writing a windows service in c# that used the FileSystemWatcher class to notify other applications or kick off jobs to process the file.

link|flag
vote up 0 vote down

We use a file system watcher. This fires as soon as the file is placed in the folder, but it may still be being written to. To overcome this, we check the file size, wait a bit, check the file size again. We do this until the file size stops increasing.

link|flag

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