@@ 1068-1070 (lines=3) @@ | ||
1065 | continue; |
|
1066 | ||
1067 | //if filename has a .part001, send it back to the function to cut the next period |
|
1068 | case preg_match('/\.part\d+$/', $this->_fileName): |
|
1069 | $this->_fileName = $this->text->cutStringUsingLast('.', $this->_fileName, "left", false); |
|
1070 | continue; |
|
1071 | ||
1072 | //if filename has a .vol001, send it back to the function to cut the next period |
|
1073 | case preg_match('/\.vol\d+(\+\d+)?$/', $this->_fileName): |
|
@@ 1073-1075 (lines=3) @@ | ||
1070 | continue; |
|
1071 | ||
1072 | //if filename has a .vol001, send it back to the function to cut the next period |
|
1073 | case preg_match('/\.vol\d+(\+\d+)?$/', $this->_fileName): |
|
1074 | $this->_fileName = $this->text->cutStringUsingLast('.', $this->_fileName, "left", false); |
|
1075 | continue; |
|
1076 | ||
1077 | //if filename contains a slash, cut the string and keep string to the right of the last slash to remove dir |
|
1078 | case strpos($this->_fileName, '\\') !== false: |