获取当前用户名(当前登录用户名)
BOOL GetUserName( LPTSTR lpBuffer,LPDWORD nSize):
lpBuffer:储存用户名的地址
nSize:所申请内存的存储空间
成功返回TRUE
void CSystemInfoDlg::OnButton2()
{
// TODO: Add your control notification handler code here
LPSTR szBuffer=new char[300];
DWORD dwSize=300;
GetUserName(szBuffer,&dwSize);
m_strUserName=szBuffer;
UpdateData(FALSE);
delete szBuffer;
}
获取计算机名(用于网络标识)
BOOL GetComputerName( LPTSTR lpBuffer,LPDWORD nSize):
lpBuffer:储存计算机名的地址
nSize:所申请内存的存储空间
成功返回TRUE
void CSystemInfoDlg::OnButton3()
{
// TODO: Add your control notification handler code here
LPSTR szBuffer=new char[300];
DWORD dwSize=300;
GetComputerName(szBuffer,&dwSize);
m_strComputerName=szBuffer;
UpdateData(FALSE);
delete szBuffer;
}
获取临时文件夹位置
DWORD GetTempPath(DWORD nBufferLength,LPTSTR lpBuffer)
nBufferLength:所申请内存的存储空间
lpBuffer:储存用户名的地址
void CSystemInfoDlg::OnButton7()
{
char tempPath[50];
DWORD dwSize=50;
GetTempPath(dwSize,tempPath);
m_strTempPath=tempPath;
UpdateData(FALSE);
}
获取System文件夹位置
UINT GetSystemDirectory(UINT uSize,LPTSTR lpBuffer)
nSize:所申请内存的存储空间
lpBuffer:储存路径的字符数组
void CSystemInfoDlg::OnButton11()
{
// TODO: Add your control notification handler code here
char tempPath[50];
DWORD dwSize=50;
GetSystemDirectory(tempPath,dwSize);
m_strSystemDir=tempPath;
UpdateData(FALSE);
}
获取Windows文件夹位置
UINT GetWindowsDirectory(LPTSTR lpBuffer,UINT nSize):
lpBuffer:储存计算机名的地址
nSize:所申请内存的存储空间
void CSystemInfoDlg::OnButton12()
{
char tempPath[50];
DWORD dwSize=50;
GetWindowsDirectory(tempPath,dwSize);
m_strWindows=tempPath;
UpdateData(FALSE);
}