美文网首页MFC
mfc 常用函数

mfc 常用函数

作者: 云胡同学 | 来源:发表于2019-08-23 15:58 被阅读0次
    • PathFileExists(path) // 判断文件是否存在
    • GotoDlgCtrl(GetDlgItem(IDC_EDIT)); // 打开视图后让将焦点设置到那个控件 参数是控件ID
    • SetDlgItemText(IDC_EDIT, name); // 设置控件文本
    • str.Find('_'); // 从str的左侧开始寻找
    • str.ReverseFind(_T('\')) // 从str的右侧开始寻找某个内容,返回的是索引
    • str.Left(n); // 返回str 索引 [0 - n-1]的内容 注意不包括 n
    • SetCurrentDirectory(FolderPath); // 切换当前进程的当前工作目录
    • CFile::Remove(FileName); // 删除文件
    • CFile::Rename(beforeFileName, afterFileName)); // 重命名文件 第一个参数修改前 第二个参数修改后

    相关文章

      网友评论

        本文标题:mfc 常用函数

        本文链接:https://www.haomeiwen.com/subject/pyjtectx.html