FS-3232 --resolve using relative path in windows script

This commit is contained in:
Jeff Lenk 2011-04-07 15:47:30 -05:00
parent 8c98328433
commit 5310735c5f
1 changed files with 4 additions and 0 deletions

View File

@ -480,9 +480,13 @@ SWITCH_DECLARE(void) switch_core_set_globals(void)
DWORD dwBufSize = BUFSIZE;
char base_dir[1024];
char *lastbacklash;
GetModuleFileName(NULL, base_dir, BUFSIZE);
lastbacklash = strrchr(base_dir, '\\');
base_dir[(lastbacklash - base_dir)] = '\0';
/* set base_dir as cwd, to be able to use relative paths in scripting languages (e.g. mod_lua) when FS is running as a service or while debugging FS using visual studio */
SetCurrentDirectory(base_dir);
#else
char base_dir[1024] = SWITCH_PREFIX_DIR;
#endif