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