| 1769 | |
| 1770 | |
| 1771 | bool Line::Util_IsDir(LPCTSTR szPath) // Returns true if the path is a directory |
| 1772 | { |
| 1773 | DWORD dwTemp = GetFileAttributes(szPath); |
| 1774 | return dwTemp != 0xffffffff && (dwTemp & FILE_ATTRIBUTE_DIRECTORY); |
| 1775 | } |
| 1776 | |
| 1777 | |
| 1778 |
nothing calls this directly
no outgoing calls
no test coverage detected