I am trying to create a directory with an all uppercase name.
I cant do it with MKDIR. If all the charadters in the name are
uppercase then the directory is made with the first character
uppercase and the rest lowercase.
However, If the LAST character in the dir name is lowercase, then
the rest of the name WILL be uppercase !!??
I am using:
IF FldrExistsFlag = 0 THEN MKDIR ProgPathStr + SymbStr + PrefixStr
where SymbStr and PrefixStr are all Uppercase
and
CALL GETMODULEFILENAME(BYVAL 0&, TmpAsciiz, SIZEOF(TmpAsciiz))
ProgPathStr = LEFT$(TmpAsciiz, INSTR(-1, TmpAsciiz, "\"))
Is this a windoze thing or a MKDIR "undocumented feature"
------------------
Kind Regards
Mike
I cant do it with MKDIR. If all the charadters in the name are
uppercase then the directory is made with the first character
uppercase and the rest lowercase.
However, If the LAST character in the dir name is lowercase, then
the rest of the name WILL be uppercase !!??
I am using:
IF FldrExistsFlag = 0 THEN MKDIR ProgPathStr + SymbStr + PrefixStr
where SymbStr and PrefixStr are all Uppercase
and
CALL GETMODULEFILENAME(BYVAL 0&, TmpAsciiz, SIZEOF(TmpAsciiz))
ProgPathStr = LEFT$(TmpAsciiz, INSTR(-1, TmpAsciiz, "\"))
Is this a windoze thing or a MKDIR "undocumented feature"
------------------
Kind Regards
Mike
Comment