MFC獲取本地磁碟碟符
阿新 • • 發佈:2019-02-15
有四個基本的函式:GetLogicalDrives, GetLogicalDriveStrings, GetDriveType 和 GetVolumeInformation。第五個是 SetVolumeLabel,如果你願意,可以用它設定卷標。
第一個函式,GetLogicalDrives,返回一個DWORD的位掩碼(bitmask)值,以告知驅動碟符。“0”表示是驅動器A,“1”表示驅動器B,依次類推。
10110 10001 11000 00000 00000 00000 00
這條資訊表示在我的電腦裡有驅動器:A、C、D、F、J、K、和L。
第二個函式GetLogicalDriveStrings,它返回一個代表所有驅動器字母的重要字串。每一個驅動器字母擁有D:\(尾隨一個‘\’)的形式,這裡 D 表示驅動器碟符,每個字串有一空(null)終結符,結尾處有兩個null。
GetDriveType返回一個程式碼,如2代表軟碟機, 3代表硬碟,5代表CD-ROM驅動器。
1. GetLogicalDriveStrings方法
TCHAR buf[100];
DWORD len = GetLogicalDriveStrings(sizeof(buf)/sizeof(TCHAR),buf);
從名字上就知道GetLogicalDriveStrings是獲得碟符的字元形式
這個函式將所有碟符都存在buf中,形式是這樣:
"C:\<NULL>D:\<NULL>E:\<NULL><NULL>"
即碟符之間用NULL隔開,最後一個碟符後面跟兩個NULL
所以可以這樣從buf中提取單個碟符:
for (CString strDisks,TCHAR* s=buf; *s; s+=_tcslen(s)+1)
{
LPCTSTR sDrivePath = s; //單個碟符
strDisks += sDrivePath;
strDisks += " ";
}
開始不知道為什麼要用TCHAR,怕用錯,查MSDN,得到這麼一句
#define char TCHAR; 汗啊~~~
2. GetLogicalDrives方法
DWORD dwDrives;
char a;
CString DriveName;
dwDrives = GetLogicalDrives ();
a = 'A';
while (dwDrives > 0)
{
if (dwDrives % 2 == 1)
{
DriveName.Format("%c", a);
GetTreeCtrl().InsertItem(DriveName, m_nImageClose,
m_nImageOpen, TVI_ROOT, TVI_LAST);
}
a++;
dwDrives /= 2;
}
GetLogicalDrives函式返回一個DWORD值,4個位元組32bit,每個bit代表一個碟符,比如bit0代表A盤,但是因為英文字母只有26個,所以最多可以表示26個碟符,不過,一般來說是夠用了
關於時間處理
time_t date;
time(&date); //得到以1970-1-1 8:00:00開始算的秒數
struct tm when;
when=*localtime(&date);//得到1900-1-1 00:00:00開始算的時間結構
asctime(&when); //得到Tue Apr 03 10:32:27 2007格式
關於ini檔案操作
WritePrivateProfileString("Job",parame[i],parameValue[i],szFileName);
後臺執行控制檯命令
WinExec("COMMAND.COM /C C:\\Inocmd32.exe > c:\\aaa.txt",SW_HIDE);
寫二進位制檔案
CFile l_f;
if(!l_f.Open(szFileName,CFile::modeReadWrite)) //若不存在則建立該檔案
{
l_f.Open(szFileName,CFile::modeCreate|CFile::modeReadWrite);
}
l_f.Seek(0,CFile::begin);
//l_f.Read(l_buf,sizeof(l_buf));
l_f.Write(&sjob,sizeof(JobScan::S_JobScan));
l_f.Close();
彈出一個檔案選擇框
開啟一個檔案
CFileDialog cfile(true);
cfile.DoModal();
m_edit1 = cfile.GetPathName();
GetDlgItem(IDC_EDIT1)->SetWindowText(m_edit1);
彈出一個目錄選擇框
//開啟一個目錄
CString FolderName;
if(OpenDir("請選擇一個目錄:",FolderName))//若目錄不存在則建立
{
if(CreateDir(FolderName))
{
this->SetDlgItemText(IDC_EDIT1,FolderName);
//iniOp.patchSavePath=FolderName;
}
else MessageBox("指定路徑非法!");
}
bool Ctest::OpenDir(LPCTSTR initFolerName , CString &selectFolderName)
{
const int nMaxByte=200;
char Mycom[nMaxByte];
BROWSEINFO Myfold;
Myfold.hwndOwner=NULL;
Myfold.pidlRoot=NULL;
Myfold.pszDisplayName=Mycom;
Myfold.lpszTitle=initFolerName;
Myfold.ulFlags=0;
Myfold.lpfn=NULL;
Myfold.lParam=NULL;
Myfold.iImage=NULL;
Mycom[0]='\0';
if(SHGetPathFromIDList(SHBrowseForFolder(&Myfold),Mycom))
{
selectFolderName=Mycom;
return TRUE;
}
else
{
return FALSE;
}
} bool Ctest::CreateDir(LPCTSTR dirName)
{
// 為 -1 則說明不存在,為其它則說明存在
if(_access(dirName, 0) == -1)
{
SECURITY_ATTRIBUTES attrDir;
SECURITY_DESCRIPTOR SecurityDescriptor;
InitializeSecurityDescriptor(&SecurityDescriptor,SECURITY_DESCRIPTOR_REVISION);
attrDir.nLength = sizeof(SECURITY_ATTRIBUTES);
attrDir.bInheritHandle = TRUE;
attrDir.lpSecurityDescriptor = &SecurityDescriptor;
//如果目錄不存在則建立一個新的目錄
if( CreateDirectory(dirName,&attrDir) == 0 )
return FALSE;
}
return TRUE;
}
第一個函式,GetLogicalDrives,返回一個DWORD的位掩碼(bitmask)值,以告知驅動碟符。“0”表示是驅動器A,“1”表示驅動器B,依次類推。
10110 10001 11000 00000 00000 00000 00
這條資訊表示在我的電腦裡有驅動器:A、C、D、F、J、K、和L。
第二個函式GetLogicalDriveStrings,它返回一個代表所有驅動器字母的重要字串。每一個驅動器字母擁有D:\(尾隨一個‘\’)的形式,這裡 D 表示驅動器碟符,每個字串有一空(null)終結符,結尾處有兩個null。
GetDriveType返回一個程式碼,如2代表軟碟機, 3代表硬碟,5代表CD-ROM驅動器。
1. GetLogicalDriveStrings方法
TCHAR buf[100];
DWORD len = GetLogicalDriveStrings(sizeof(buf)/sizeof(TCHAR),buf);
從名字上就知道GetLogicalDriveStrings是獲得碟符的字元形式
這個函式將所有碟符都存在buf中,形式是這樣:
"C:\<NULL>D:\<NULL>E:\<NULL><NULL>"
即碟符之間用NULL隔開,最後一個碟符後面跟兩個NULL
所以可以這樣從buf中提取單個碟符:
for (CString strDisks,TCHAR* s=buf; *s; s+=_tcslen(s)+1)
{
LPCTSTR sDrivePath = s; //單個碟符
strDisks += sDrivePath;
strDisks += " ";
}
開始不知道為什麼要用TCHAR,怕用錯,查MSDN,得到這麼一句
#define char TCHAR; 汗啊~~~
2. GetLogicalDrives方法
DWORD dwDrives;
char a;
CString DriveName;
dwDrives = GetLogicalDrives
a = 'A';
while (dwDrives > 0)
{
if (dwDrives % 2 == 1)
{
DriveName.Format("%c", a);
GetTreeCtrl().InsertItem(DriveName, m_nImageClose,
m_nImageOpen, TVI_ROOT, TVI_LAST);
}
a++;
dwDrives /= 2;
}
GetLogicalDrives函式返回一個DWORD值,4個位元組32bit,每個bit代表一個碟符,比如bit0代表A盤,但是因為英文字母只有26個,所以最多可以表示26個碟符,不過,一般來說是夠用了
關於時間處理
time_t date;
time(&date); //得到以1970-1-1 8:00:00開始算的秒數
struct tm when;
when=*localtime(&date);//得到1900-1-1 00:00:00開始算的時間結構
asctime(&when); //得到Tue Apr 03 10:32:27 2007格式
關於ini檔案操作
WritePrivateProfileString("Job",parame[i],parameValue[i],szFileName);
後臺執行控制檯命令
WinExec("COMMAND.COM /C C:\\Inocmd32.exe > c:\\aaa.txt",SW_HIDE);
寫二進位制檔案
CFile l_f;
if(!l_f.Open(szFileName,CFile::modeReadWrite)) //若不存在則建立該檔案
{
l_f.Open(szFileName,CFile::modeCreate|CFile::modeReadWrite);
}
l_f.Seek(0,CFile::begin);
//l_f.Read(l_buf,sizeof(l_buf));
l_f.Write(&sjob,sizeof(JobScan::S_JobScan));
l_f.Close();
彈出一個檔案選擇框
開啟一個檔案
CFileDialog cfile(true);
cfile.DoModal();
m_edit1 = cfile.GetPathName();
GetDlgItem(IDC_EDIT1)->SetWindowText(m_edit1);
彈出一個目錄選擇框
//開啟一個目錄
CString FolderName;
if(OpenDir("請選擇一個目錄:",FolderName))//若目錄不存在則建立
{
if(CreateDir(FolderName))
{
this->SetDlgItemText(IDC_EDIT1,FolderName);
//iniOp.patchSavePath=FolderName;
}
else MessageBox("指定路徑非法!");
}
bool Ctest::OpenDir(LPCTSTR initFolerName , CString &selectFolderName)
{
const int nMaxByte=200;
char Mycom[nMaxByte];
BROWSEINFO Myfold;
Myfold.hwndOwner=NULL;
Myfold.pidlRoot=NULL;
Myfold.pszDisplayName=Mycom;
Myfold.lpszTitle=initFolerName;
Myfold.ulFlags=0;
Myfold.lpfn=NULL;
Myfold.lParam=NULL;
Myfold.iImage=NULL;
Mycom[0]='\0';
if(SHGetPathFromIDList(SHBrowseForFolder(&Myfold),Mycom))
{
selectFolderName=Mycom;
return TRUE;
}
else
{
return FALSE;
}
} bool Ctest::CreateDir(LPCTSTR dirName)
{
// 為 -1 則說明不存在,為其它則說明存在
if(_access(dirName, 0) == -1)
{
SECURITY_ATTRIBUTES attrDir;
SECURITY_DESCRIPTOR SecurityDescriptor;
InitializeSecurityDescriptor(&SecurityDescriptor,SECURITY_DESCRIPTOR_REVISION);
attrDir.nLength = sizeof(SECURITY_ATTRIBUTES);
attrDir.bInheritHandle = TRUE;
attrDir.lpSecurityDescriptor = &SecurityDescriptor;
//如果目錄不存在則建立一個新的目錄
if( CreateDirectory(dirName,&attrDir) == 0 )
return FALSE;
}
return TRUE;
}