부스트 파일 시스템 라이브러리를 사용하는 코드를 작성 중입니다.부스트 파일 시스템 컴파일 오류
artist = (this->find_diff(paths_iterator->parent_path(), this->m_input_path) == 1) ? (*(paths_iterator->parent_path().end() - 1)) : (*(paths_iterator->parent_path().end() - 2));
album = (this->find_diff(paths_iterator->parent_path(), this->m_input_path) == 1) ? "" : (*(paths_iterator->parent_path().end() - 1));
유형 :
artist and album are of type std::string this->find_diff returns an int this->m_input_path is a std::string paths_iterator is of type std::vector(open bracket)boost::filesystem::path>::iterator
내가 컴파일 오류가 얻을 : 여기 내 코드의 발췌 한 것입니다
error C2039: 'advance' : is not a member of 'boost::filesystem::basic_path<String,Traits>::iterator' d:\development\libraries\boost\boost\iterator\iterator_facade.hpp on line 546
이 코드는 배치 스크립트를 출력하는 프로그램의 일부는 lame.exe를 사용하여 파일을 mp3로 변환합니다. 이 설계되었습니다 음악 라이브러리는 형식은 :
루트/아티스트/곡을
또는
this-> m_input_path 루트의 경로는 루트/아티스트/앨범/노래 .
문제가 제대로 해결되는지 잘 모르겠습니다. 만약 내가 그렇다면, 내가 얻고있는 오류를 어떻게 수정합니까?
편집 :
내 코드는 지금 :
boost::filesystem::path::iterator end_path_itr = paths_iterator->parent_path().end();
if(this->find_diff(paths_iterator->parent_path(), this->m_input_path) == 1) /* For cases where: /root/artist/song */
{
album = "";
end_path_itr--;
artist = *end_path_itr;
}
else /* For cases where: /root/artist/album/song */
{
end_path_itr--;
album = *end_path_itr;
end_path_itr--; <-- Crash Here
artist = *end_path_itr;
}
오류 지금 얻을 수 있습니다 :
Assertion failed: itr.m_pos && "basic_path::iterator decrement pat begin()", file ... boost\filesystem\path.hpp, line 1444
어떤 버전의 부스트를 사용하고 있습니까? –
Boost 1.41.0 - 15char –