FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for CA-Clipper function that return the temp directory of the logged user
Posts: 22
Joined: Fri Nov 04, 2005 09:05 PM
function that return the temp directory of the logged user
Posted: Sat Mar 11, 2006 02:02 PM

I am looking for the instruction that return the path of the temp directory
win2000 and WinXp
(c:\documents and settings\user1.....)
Thanks
Philippe Jacquet

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: function that return the temp directory of the logged u
Posted: Sat Mar 11, 2006 06:23 PM

GetEnv( "TEMP" )

EMG

Posts: 22
Joined: Fri Nov 04, 2005 09:05 PM
Thanks a lot
Posted: Sun Mar 12, 2006 09:59 AM

Thans
Philippe Jacquet

Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 04:14 PM
Philippe,

Enrico's solution won't always work. Here is a more comprehensive solution.

James

//--- Returns temporary directory name without trailing backslash
function getTempDir()
   local cDir   := GetEnv("TEMP")
   if empty(cDir)
      cDir := GetEnv("TMP")
   endif
   if Right( cDir, 1 ) == "\"
      cDir := SubStr( cDir, 1, Len( cDir ) - 1 )
   endif
   if !empty(cDir)
      if !lIsDir(cDir)
         cDir := GetWinDir()
      endif
   else
      cDir := GetWinDir()
   endif
return cDir
FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 54
Joined: Fri Oct 21, 2005 10:45 AM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 04:27 PM

Hi James.
I think your code is incomplete. :)
It may so occur that there are defined two variables TEMP and TMP in environment. For example TEMP=C:\TEMP and TMP=C:\TMP while directory C:\TEMP does not exist but directory C:\TMP does exist.
In this case I think directory C:\TMP should be used instead of GetWinDir().

Vladimir Grigoriev

Posts: 54
Joined: Fri Oct 21, 2005 10:45 AM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 04:40 PM

Maybe something as the following :)

//--- Returns temporary directory name without trailing backslash
function GetTempDir()
local cTargetDir, cTempDir, cTmpDir
local lTempExist, lTmpExist

cTempDir := GetEnv( "TEMP" )
cTmpDir := GetEnv( "TMP" )

if ( Right( cTempDir, 1 ) == "\" )
cTempDir := SubStr( cTempDir, 1, Len( cTempDir ) - 1 )
endif

if ( Right( cTmpDir, 1 ) == "\" )
cTmpDir := SubStr( cTmpDir, 1, Len( cTmpDir ) - 1 )
endif

lTempExist := .F.
if ( !empty( cTempDir ) )
if ( IsDir(cTempDir ) )
lTempExist := .T.
endif
endif

lTmpExist := .F.
if ( !empty( cTmpDir ) )
if ( IsDir(cTmpDir ) )
lTmpExist := .T.
endif
endif

do case
case ( lTempExist )
cTargetDir := cTempDir
case ( lTmpExist )
cTargetDir := cTmpDir
otherwise
cTargetDir := GetWinDir()
endcase

return ( cTargetDir )

Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 04:45 PM

Vladimir,

Thanks for the improvement.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 54
Joined: Fri Oct 21, 2005 10:45 AM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 04:56 PM

Also the statement

if ( Right( cTempDir, 1 ) == "\" )
cTempDir := SubStr( cTempDir, 1, Len( cTempDir ) - 1 )
endif

is not correct enough. :D

The following would be more correct.

if ( ( Right( cTempDir, 1 ) == "\" ) .AND. ! ( Right( cTempDir, 2 ) == ":\" ) )
cTempDir := SubStr( cTempDir, 1, Len( cTempDir ) - 1 )
endif

Vladimir Grigoriev

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 05:24 PM
James Bott wrote:Enrico's solution won't always work.


I used GetEnv( "TEMP" ) for at least 10 years and got no reports about problems with it.

EMG
Posts: 54
Joined: Fri Oct 21, 2005 10:45 AM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 05:33 PM
Enrico Maria
I used GetEnv( "TEMP" ) for at least 10 years and got no reports about problems with it.

It is very boring! :-)
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 05:42 PM

Enrico,

Yea, like Valdimir says, thats too easy.

I suppose if getEnv("TEMP") returns a blank string then any temp files will just be written to the current directory. There probably won't be any error message. I'm not saying there is anything wrong with that, just that you probably wouldn't know if it was not working as expected.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 08:18 PM

If GetEnv( "TEMP" ) should have return an empty string then I would consider more correct to put temporary files in the current directory rather than in WINDOWS directory.

EMG

Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
function that return the temp directory of the logged user
Posted: Mon Mar 13, 2006 09:09 PM

Enrico,

I agree. I didn't write the function I posted, I just had it in my notes. I never really carefully looked at what it was doing.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 54
Joined: Fri Oct 21, 2005 10:45 AM
function that return the temp directory of the logged user
Posted: Tue Mar 14, 2006 09:41 AM
Enrico Mario
I would consider more correct to put temporary files in the current directory

Buon girno.
In the current directory or in a directory from which your program started?
Vladimir Grigoriev
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
function that return the temp directory of the logged user
Posted: Tue Mar 14, 2006 10:07 AM

In the current directory (that is the one from which my program started, in my environment).

EMG