7 references to FindFirstFile
mscorlib (7)
system\io\directory.cs (1)
1372using (SafeFindHandle hnd = Win32Native.FindFirstFile(fullPath + Path.DirectorySeparatorCharAsString + "*", ref data)) {
system\io\file.cs (1)
1374SafeFindHandle handle = Win32Native.FindFirstFile(tempPath, ref findData);
system\io\filesystemenumerable.cs (3)
273_hnd = Win32Native.FindFirstFile(searchPath, ref data); 429_hnd = Win32Native.FindFirstFile(searchPath, ref data); 533hnd = Win32Native.FindFirstFile(searchPath, ref data);
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2463SafeFindHandle hnd = Win32Native.FindFirstFile(Path.AddLongPathPrefix(fullPath), ref data);
system\io\longpath.cs (1)
751using (SafeFindHandle hnd = Win32Native.FindFirstFile(searchPath, ref data))