Files
raylib/src
Ray c264c86ee0 ADDED: Some useful functions for Files and Text management
// File management functions
 - int FileRename(const char *fileName, const char *fileRename); // Rename file (if exists)
 - iint FileRemove(const char *fileName);                         // Remove file (if exists)
 - iint FileCopy(const char *srcPath, const char *dstPath);       // Copy file from one path to another, dstPath created if it doesn't exist
 - iint FileMove(const char *srcPath, const char *dstPath);       // Move file from one directory to another, dstPath created if it doesn't exist
 - int FileTextReplace(const char *fileName, const char *search, const char *replacement); // Replace text in an existing file
 - iint FileTextFindIndex(const char *fileName, const char *search); // Find text in existing file

// Text management functions
 - const char *TextRemoveSpaces(const char *text);                                       // Remove text spaces, concat words
 - char *GetTextBetween(const char *text, const char *begin, const char *end);           // Get text between two strings
 - char *TextReplace(const char *text, const char *search, const char *replacement);     // Replace text string (WARNING: memory must be freed!)
 - char *TextReplaceBetween(const char *text, const char *begin, const char *end, const char *replacement); // Replace text between two specific strings (WARNING: memory must be freed!)
2025-09-18 15:34:09 +02:00
..
2025-09-03 18:25:27 +02:00
2025-09-04 10:33:26 +02:00
2025-01-01 00:02:52 +01:00
2025-01-01 00:02:52 +01:00
2024-11-14 16:40:04 +01:00
2025-01-01 00:02:52 +01:00
2025-01-01 00:02:52 +01:00
2025-08-07 19:55:46 +03:00
2025-01-01 00:02:52 +01:00
2025-09-18 15:29:13 +02:00
2025-09-14 18:07:58 +02:00
2025-09-02 12:10:40 +02:00
2025-01-01 00:02:52 +01:00