| 306 | |
| 307 | |
| 308 | bool fileExists(const std::string& name) |
| 309 | { |
| 310 | if (isStdin(name)) |
| 311 | return true; |
| 312 | |
| 313 | VSIStatBufL sStat; |
| 314 | return (VSIStatExL(name.c_str(), &sStat, |
| 315 | VSI_STAT_EXISTS_FLAG) == 0) ? true : false; |
| 316 | } |
| 317 | |
| 318 | |
| 319 | /// \return 0 on error or invalid file type. |