Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1.     std::wstring wsName(m_lDirPath);
  2.     const size_t last_slash_idx = wsName.find_last_of(L"\\/");
  3.     if (std::wstring::npos != last_slash_idx)
  4.         wsName.erase(0, last_slash_idx + 1);
  5.  
  6.     std::wstring wsConfPath = wsPath + L"\\" + wsName + L".import";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement