Changeset 912
- Timestamp:
- 05/27/08 14:44:13
- Files:
-
- trunk/src/vpb/FileUtils.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/vpb/FileUtils.cpp
r903 r912 91 91 if (size>1) 92 92 { 93 directories.push_back(std::string(fullpath,0, pos_current)); 93 if (pos_current == 2 && fullpath[1]==':') 94 directories.push_back(std::string(fullpath,0, pos_current+1)); 95 else 96 directories.push_back(std::string(fullpath,0, pos_current)); 97 pos_start = pos_current+1; 94 98 } 95 pos_start = pos_current+1;96 99 } 97 100 }
