Skip to content
Snippets Groups Projects
Commit 90649e80 authored by rswindell's avatar rswindell
Browse files

Created global file_getcase() method, returns fixed case of passed filename

(and long version of filename on Win32).
parent b9ebd76a
No related branches found
No related tags found
No related merge requests found
......@@ -1096,6 +1096,29 @@ js_getfname(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
return(JS_TRUE);
}
static JSBool
js_getfcase(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
char* str;
char path[MAX_PATH+1];
JSString* js_str;
if((str=JS_GetStringBytes(JS_ValueToString(cx, argv[0])))==NULL)
return(JS_FALSE);
*rval = JSVAL_VOID;
SAFECOPY(path,str);
if(fexistcase(path)) {
js_str = JS_NewStringCopyZ(cx, path);
if(js_str==NULL)
return(JS_FALSE);
*rval = STRING_TO_JSVAL(js_str);
}
return(JS_TRUE);
}
static JSBool
js_fexist(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
......@@ -1508,9 +1531,13 @@ static jsMethodSpec js_global_functions[] = {
{"lfexpand", js_lfexpand, 1, JSTYPE_STRING, JSDOCSTR("string text")
,JSDOCSTR("expand line-feeds (LF) to carriage-return/line-feeds (CRLF)")
},
{"file_getname", js_getfname, 1, JSTYPE_STRING, JSDOCSTR("string text")
{"file_getname", js_getfname, 1, JSTYPE_STRING, JSDOCSTR("string path")
,JSDOCSTR("returns filename portion of passed path string")
},
},
{"file_getcase", js_getfcase, 1, JSTYPE_STRING, JSDOCSTR("string filename")
,JSDOCSTR("returns correct case of filename (long version of filename on Win32) "
"or <i>undefined</i> if the file doesn't exist")
},
{"file_exists", js_fexist, 1, JSTYPE_BOOLEAN, JSDOCSTR("string filename")
,JSDOCSTR("verify a file's existence")
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment