Is there a way to determine when a file write operation is done in C# - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T03:51:21Zhttp://stackoverflow.com/feeds/question/233601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/233601/is-there-a-way-to-determine-when-a-file-write-operation-is-done-in-c1Is there a way to determine when a file write operation is done in C# [closed]j d2008-10-24T13:50:29Z2008-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#2336070Answer by Mitchel Sellers for Is there a way to determine when a file write operation is done in C#Mitchel Sellers2008-10-24T13:52:06Z2008-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#2336082Answer by Nick for Is there a way to determine when a file write operation is done in C#Nick2008-10-24T13:52:12Z2008-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#2336160Answer by duckworth for Is there a way to determine when a file write operation is done in C#duckworth2008-10-24T13:54:08Z2008-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#2336451Answer by Travis Collins for Is there a way to determine when a file write operation is done in C#Travis Collins2008-10-24T14:00:41Z2008-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#2338660Answer by Aaron Smith for Is there a way to determine when a file write operation is done in C#Aaron Smith2008-10-24T14:52:24Z2008-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>