| 1753 | */ |
| 1754 | |
| 1755 | int VSISetFileMetadata(const char *pszFilename, CSLConstList papszMetadata, |
| 1756 | const char *pszDomain, CSLConstList papszOptions) |
| 1757 | { |
| 1758 | VSIFilesystemHandler *poFSHandler = VSIFileManager::GetHandler(pszFilename); |
| 1759 | return poFSHandler->SetFileMetadata(pszFilename, papszMetadata, pszDomain, |
| 1760 | papszOptions) |
| 1761 | ? 1 |
| 1762 | : 0; |
| 1763 | } |
| 1764 | |
| 1765 | /************************************************************************/ |
| 1766 | /* VSIIsCaseSensitiveFS() */ |
nothing calls this directly
no test coverage detected