commonly used file methods
Functions | |
SCIP_Bool | SCIPfileExists (const char *filename) |
void | SCIPsplitFilename (char *filename, char **path, char **name, char **extension, char **compression) |
SCIP_Bool SCIPfileExists | ( | const char * | filename | ) |
returns, whether the given file exists
filename | file name |
Definition at line 10184 of file misc.c.
Referenced by readParams(), SCIP_DECL_CONCSOLVERCREATEINST(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_EVENTEXEC(), and SCIP_DECL_EVENTINIT().
void SCIPsplitFilename | ( | char * | filename, |
char ** | path, | ||
char ** | name, | ||
char ** | extension, | ||
char ** | compression | ||
) |
splits filename into path, name, and extension
filename | filename to split; is destroyed (but not freed) during process |
path | pointer to store path, or NULL if not needed |
name | pointer to store name, or NULL if not needed |
extension | pointer to store extension, or NULL if not needed |
compression | pointer to store compression extension, or NULL if not needed |
Definition at line 10200 of file misc.c.
References MAX.
Referenced by SCIPreadProb(), separateGLS(), and writeProblem().