MRMB Posted January 5, 2012 Report Share Posted January 5, 2012 Pessoal,Estou precisando recuperar o diretório do usuário de arquivos temporários (Cache do Internet Explorer). Em C#, VB.net e bem prático obter essa informação. Contudo, estou tendo dificuldade para programar um código em VB6.Desde já agradeço quem puder ajudar. Quote Link to comment Share on other sites More sharing options...
0 MRMB Posted January 5, 2012 Author Report Share Posted January 5, 2012 Pessoal,Consegui resolver o problema. Segue abaixo o código que utilizei caso alguém venha a precisar.Option Explicit Private Declare Function SHGetSpecialFolderPath Lib "shell32.dll" Alias "SHGetSpecialFolderPathA" (ByVal hwnd As Long, ByVal pszPath As String, ByVal csidl As Long, ByVal fCreate As Long) As Long Private Const CSIDL_HISTORY As Long = &H22 Private Const CSIDL_COKIES As Long = &H21 Private Const CSIDL_INTERNET_FILES As Long = &H20 Private Sub Command_Click() Dim sPath As String sPath = Space(260) SHGetSpecialFolderPath Me.hwnd, sPath, CSIDL_INTERNET_FILES, False MsgBox sPath End Sub Quote Link to comment Share on other sites More sharing options...
Question
MRMB
Pessoal,
Estou precisando recuperar o diretório do usuário de arquivos temporários (Cache do Internet Explorer).
Em C#, VB.net e bem prático obter essa informação. Contudo, estou tendo dificuldade para programar um código em VB6.
Desde já agradeço quem puder ajudar.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.