michael@0: /* michael@0: ******************************************************************************* michael@0: * michael@0: * Copyright (C) 2009, International Business Machines michael@0: * Corporation and others. All Rights Reserved. michael@0: * michael@0: ******************************************************************************* michael@0: * file name: filetools.h michael@0: * encoding: US-ASCII michael@0: * tab size: 8 (not used) michael@0: * indentation:4 michael@0: * michael@0: * created on: 2009jan09 michael@0: * created by: Michael Ow michael@0: * michael@0: * Contains various functions to handle files. michael@0: * Not suitable for production use. Not supported. michael@0: * Not conformant. Not efficient. michael@0: */ michael@0: michael@0: #ifndef __FILETOOLS_H__ michael@0: #define __FILETOOLS_H__ michael@0: michael@0: #include "unicode/utypes.h" michael@0: michael@0: U_CAPI UBool U_EXPORT2 michael@0: isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE); michael@0: michael@0: U_CAPI void U_EXPORT2 michael@0: swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar); michael@0: michael@0: #endif