Situation
I'm debugging some legacy code that performs some existence checks on directory paths. First, DirectoryPathA
is checked and returned if it exists. This should be the usual case. If that fails, DirectoryPathB
is checked and returned. (If that fails too, other things happen, not part of this question). Here's how the code looks:
if (!string.IsNullOrEmpty(DirectoryPathA))
{
driveInfo = new DriveInfo(DirectoryPathA);
if (driveInfo.IsReady)
{
dInf = new DirectoryInfo(DirectoryPathA);
if (dInf.Exists)
{
return DirectoryPathA;
}
}
}
if (!string.IsNullOrEmpty(DirectoryPathB))
{
dInf = new DirectoryInfo(DirectoryPathB);
if (dInf.Exists)
{
return DirectoryPathB;
}
}
As you can see, the first check has an additional guard based on DriveInfo.IsReady
. There have been problems with file access on the network before, so my assumption is (again, this is legacy code) that this was introduced to establish DirectoryPathB
as an alternative if DirectoryPathA
is not available. I have no idea why no such check for DriveInfo.IsReady
is performed on DirectoryPathB
.
Problem
Even if DirectoryPathA
is a local directory (so no network outage), the code above sporadically returns DirectoryPathB
. The code is executed several times and is assumed to be idempotent, which it is not, which breaks things.
This only happens occasionally on some machines over the course of several hours. I cannot reproduce the problem.
There's a fundamental problem with the assumption that the drive state would never change throughout the execution of a program. I understand that. However, this code seems to be fine most of the time and has been in the past.
Question
What can cause DriveInfo.IsReady
to be false
?
The documentation states
true
if the drive is ready;false
if the drive is not ready.
Thanks for nothing. The remarks section adds
IsReady indicates whether a drive is ready. For example, it indicates whether a CD is in a CD drive or whether a removable storage device is ready for read/write operations. If you do not test whether a drive is ready, and it is not ready, querying the drive using DriveInfo will raise an IOException.
- It's not a removable drive. We're talking plain old
C:\
. - It's not a permission issue because it sometimes works and sometimes doesn't for the same user.
- It's not a matter of the drive becoming unavailable due to power saving mode, because
- power saving mode is not active and
- it's an SSD.
The old documentation states that
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Does that mean that DriveInfo.IsReady
might be false
if some other thread is performing some operation on the drive at the same time?
Is it even necessary for DriveInfo.IsReady
to be true
in order to check if a directory exists?
I met a situation that Ntfs file system corrupted and event 55 of Ntfs triggered. At this time DriveInfo.isReady() returns false.