I am keeping track of a folder of files and their file lengths, at least one of these files is still getting written to.
I have to keep a continuously updated record of each file length which I use for other purposes.
The Update
method is called every 15 seconds and updates the file's properties if the file length differs from the length determined in the previous update.
The update method looks something like this:
var directoryInfo = new DirectoryInfo(archiveFolder);
var archiveFiles = directoryInfo.GetFiles()
.OrderByDescending(f=>f.CreationTimeUtc);
foreach (FileInfo fi in archiveFiles)
{
//check if file existed in previous update already
var origFileProps = cachedFiles.GetFileByName(fi.FullName);
if (origFileProps != null && fi.Length == origFileProps.EndOffset)
{
//file length is unchanged
}
else
{
//Update the properties of this file
//set EndOffset of the file to current file length
}
}
I am aware of the fact that DirectoryInfo.GetFiles()
is pre-populating many of the FileInfo
properties including Length
- and this is ok as long as no caching is done between updates (cached information should not be older than 15 seconds).
I was under the assumption that each DirectoryInfo.GetFiles()
call generates a new set of FileInfos
which all are populated with fresh information right then using the FindFirstFile
/FindNextFile
Win32 API. But this does not seem to be the case.
Very rarely, but eventually for sure I run into situations where the file length for a file that is getting written to is not updated for 5, 10 or even 20 minutes at a time (testing is done on Windows 2008 Server x64 if that matters).
A current workaround is to call fi.Refresh()
to force an update on each file info. This internally seems to delegate to a GetFileAttributesEx
Win32 API call to update the file information.
While the cost of forcing a refresh manually is tolerable I would rather understand why I am getting stale information in the first place. When is the FileInfo
information generated and how does it relate to the call of DirectoryInfo.GetFiles()
? Is there a file I/O caching layer underneath that I don't fully grasp?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…