본문 바로가기
C++

CString Path 경로 가져오기

by 사무실 꿀벌 2020. 6. 2.
반응형

   // m_str_Path <-여기에 경로가 있다 치고.파일경로 까지 포함해서 있다 치고..

CString strNewFilePath = m_str_Path;
strNewFilePath = strNewFilePath.Left(strNewFilePath.ReverseFind(_T('\\')));

이렇게 하면 마지막파일 있는 경로 까지 strNewFilePath 에 남는다.
그뒤에 경로를 또 자르고 싶으면

strNewFilePath = strNewFilePath.Left(strNewFilePath.ReverseFind(_T('\\')));

이거 또 쓰면됨.

반응형

'C++' 카테고리의 다른 글

MFC ListControl Func  (0) 2020.06.23
How to MFC ListControl Header Size Auto Setting  (0) 2020.06.02
MFC 실행파일 경로 찾기  (0) 2020.06.02
CString Function Example Sample  (0) 2020.06.02
std::stringstream std::getline  (0) 2020.06.02