| 129 | } |
| 130 | |
| 131 | bool CUpdateRunner::DirectoryExists(wchar_t* szPath) |
| 132 | { |
| 133 | DWORD dwAttrib = GetFileAttributes(szPath); |
| 134 | |
| 135 | return (dwAttrib != INVALID_FILE_ATTRIBUTES && |
| 136 | (dwAttrib & FILE_ATTRIBUTE_DIRECTORY)); |
| 137 | } |
| 138 | |
| 139 | bool CUpdateRunner::DirectoryIsWritable(wchar_t * szPath) |
| 140 | { |
nothing calls this directly
no outgoing calls
no test coverage detected