您的位置:首页 > 其它

如何获取系统的临时目录路径?

2008-04-24 08:30 183 查看
GetTempPath取得的是一个DOS名称,当文件名长度大于8时,长文件名格式“C:Documents and SettingsAdministratorLocal SettingsTemp”会显示成“C:DOCUME~1ADMINI~1LOCALS~1Temp”的短文件名格式,如何根据自己需要取得系统临时目录的途径,下面是一个新写的函数,调用两个API 实现,相信许多朋友可能用得到。
Option ExplicitPrivate Declare Function GetLongPathName Lib "kernel32" Alias "GetLongPathNameA" (ByVal lpszShortPath As String, ByVal lpszLongPath As String, ByVal cchBuffer As Long) As LongPrivate Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long
Sub GetTEMPfolder(Optional ByVal showlong As Boolean = True) Dim longname As String, shortname As String shortname = Space(256) GetTempPath Len(shortname), shortname longname = Space(1024) GetLongPathName shortname, longname, Len(longname)

MsgBox "Tempfolder : " & IIf(showlong = True, longname, shortname) End Sub
Private Sub Command1_Click() GetTEMPfolder '长文件名 GetTEMPfolder False '短文件名End Sub
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: