Is there a way to determine when a file write operation is done in C# - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T03:51:21Z http://stackoverflow.com/feeds/question/233601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c 1 Is there a way to determine when a file write operation is done in C# [closed] j d 2008-10-24T13:50:29Z 2008-10-24T14:52:24Z <p>I get files coming in via FTP to a directory.</p> <p>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.</p> <p>I have no control on the company sending the files via FTP.</p> <p><hr></p> <h2>This is an exact duplicate</h2> <p><a href="http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete">http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete</a></p> http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c/233607#233607 0 Answer by Mitchel Sellers for Is there a way to determine when a file write operation is done in C# Mitchel Sellers 2008-10-24T13:52:06Z 2008-10-24T13:52:06Z <p>Depending on your specific needs, you could use a FileSystemWatcher.</p> <p>Or</p> <p>You could monitor the size of the file, if it stops increasing after X number of polls, you can consider it complete.</p> http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c/233608#233608 2 Answer by Nick for Is there a way to determine when a file write operation is done in C# Nick 2008-10-24T13:52:12Z 2008-10-24T13:52:12Z <p>Keep trying to open the file with <code>FileShare.None</code>, which is an exclusive lock, at periodic intervals (say every 15 sec). Eventually you'll get the lock once the FTP transfer is complete.</p> http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c/233616#233616 0 Answer by duckworth for Is there a way to determine when a file write operation is done in C# duckworth 2008-10-24T13:54:08Z 2008-10-24T13:54:08Z <p>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.</p> http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c/233645#233645 1 Answer by Travis Collins for Is there a way to determine when a file write operation is done in C# Travis Collins 2008-10-24T14:00:41Z 2008-10-24T14:00:41Z <p>I use something like this:</p> <pre><code> 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; } } </code></pre> http://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c/233866#233866 0 Answer by Aaron Smith for Is there a way to determine when a file write operation is done in C# Aaron Smith 2008-10-24T14:52:24Z 2008-10-24T14:52:24Z <p>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.</p>