3 writes to _wfd
System.Web (3)
Util\FileEnumerator.cs (3)
87return new FindFileData(ref _wfd); 125_hFindFile = UnsafeNativeMethods.FindFirstFile(_path + @"\*.*", out _wfd); 132bool hasMoreFiles = UnsafeNativeMethods.FindNextFile(_hFindFile, out _wfd);
6 references to _wfd
System.Web (6)
Util\FileEnumerator.cs (6)
71get { return _wfd.cFileName; } 75get { return _path + @"\" + _wfd.cFileName; } 79get { return (_wfd.dwFileAttributes & UnsafeNativeMethods.FILE_ATTRIBUTE_DIRECTORY) != 0; } 83get { return (_wfd.dwFileAttributes & UnsafeNativeMethods.FILE_ATTRIBUTE_HIDDEN) != 0; } 110if (_wfd.cFileName == "." || _wfd.cFileName == "..")