| 33 | // Determines whether a path to a file system object such as a file or directory is valid |
| 34 | |
| 35 | BOOL RCPathFileExists (const char* szPath) |
| 36 | { |
| 37 | DWORD dwAttr = GetFileAttributes (szPath); |
| 38 | return (dwAttr != 0xFFFFFFFF); |
| 39 | } |
| 40 | |
| 41 | |
| 42 | ////////////////////////////////////////////////////////////////////////// |