00001 00002 00003 00004 00005 00006 00007 #ifndef __FILE_OPERATIONS_H 00008 #define __FILE_OPERATIONS_H 00009 00010 #include "Export.h" 00011 00012 bool RAK_DLL_EXPORT WriteFileWithDirectories( const char *path, char *data, unsigned dataLength ); 00013 bool RAK_DLL_EXPORT IsSlash(unsigned char c); 00014 void RAK_DLL_EXPORT AddSlash( char *input ); 00015 void RAK_DLL_EXPORT QuoteIfSpaces(char *str); 00016 bool RAK_DLL_EXPORT DirectoryExists(const char *directory); 00017 unsigned int RAK_DLL_EXPORT GetFileLength(const char *path); 00018 00019 #endif