摘要: int length = sPath.GetLength(); CString sFormat = _T(""); for (int i = length - 1; i > 0;i--) { if (_T('.')==sPath.GetAt(i)) { sFormat = sPa... 阅读全文
posted @ 2015-12-15 17:24 xzh1993 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <string> #include <io.h> #include <vector> #include <iostream> using namespace std; /******************************************************** 阅读全文
posted @ 2015-12-15 14:53 xzh1993 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 都通过基本类型来转换即可:CString可以转换为基本类型LPCTSTR,LPCTSTR根据项目编码可以是const char*或者const wchar_t*;string可以用c_str()转换为const char*,stringw可以用c_str()转换为const w_char*。而CSt... 阅读全文
posted @ 2015-12-15 14:51 xzh1993 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 1,目的提供一个对话框供用户选择一个文件夹路径。2,原理&实现先贴上这个工具类的源码:在你的程序中使用静态方法 CSelectFolderDlg::Show() 就能显示一个选择文件夹的对话框啦,返回的CString就是所选文件夹路径。[cpp]view plaincopy/*文件:SelectFo... 阅读全文
posted @ 2015-12-15 13:36 xzh1993 阅读(4416) 评论(0) 推荐(0) 编辑