|
-
Aug 6th, 2001, 04:46 PM
#1
Thread Starter
Hyperactive Member
how would i get the windows Temp folder path?
how would i get the windows Temp folder path?
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
-
Aug 6th, 2001, 05:18 PM
#2
use the GetTempPath API
but don't ask me how with C++
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Aug 6th, 2001, 05:23 PM
#3
Thread Starter
Hyperactive Member
i know how to get it in vb, but i need to know C++
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
-
Aug 6th, 2001, 06:47 PM
#4
Fanatic Member
try something like:
Code:
TCHAR tempPath[MAX_PATH];
GetTempPath(MAX_PATH, tempPath);
GWDASH
[b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|