| 131 | } |
| 132 | |
| 133 | bool is_dir(const ACE_TCHAR* path) |
| 134 | { |
| 135 | ACE_WString wpath = to_win32_long_path(path); |
| 136 | DWORD attrib = ::GetFileAttributesW(wpath.c_str()); |
| 137 | |
| 138 | if (attrib != INVALID_FILE_ATTRIBUTES) { |
| 139 | return attrib & FILE_ATTRIBUTE_DIRECTORY; |
| 140 | } |
| 141 | |
| 142 | return false; |
| 143 | } |
| 144 | |
| 145 | int dds_rmdir(const ACE_TCHAR* path) |
| 146 | { |
no test coverage detected