8 references to SafeFindHandle
mscorlib (8)
microsoft\win32\win32native.cs (2)
1417
internal static extern
SafeFindHandle
FindFirstFile(string fileName, ref WIN32_FIND_DATA data);
1422
SafeFindHandle
hndFindFile,
system\io\directory.cs (1)
1372
using (
SafeFindHandle
hnd = Win32Native.FindFirstFile(fullPath + Path.DirectorySeparatorCharAsString + "*", ref data)) {
system\io\file.cs (1)
1374
SafeFindHandle
handle = Win32Native.FindFirstFile(tempPath, ref findData);
system\io\filesystemenumerable.cs (2)
174
SafeFindHandle
_hnd = null;
528
SafeFindHandle
hnd = null;
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2463
SafeFindHandle
hnd = Win32Native.FindFirstFile(Path.AddLongPathPrefix(fullPath), ref data);
system\io\longpath.cs (1)
751
using (
SafeFindHandle
hnd = Win32Native.FindFirstFile(searchPath, ref data))