|
@@ 198-200 (lines=3) @@
|
| 195 |
|
* @param string $dirName |
| 196 |
|
*/ |
| 197 |
|
public function tripleMove($old, $new, $temp, $dirName){ |
| 198 |
|
if ($this->fileExists($old . '/' . $dirName)){ |
| 199 |
|
$this->move($old . '/' . $dirName, $temp . '/' . $dirName); |
| 200 |
|
} |
| 201 |
|
if ($this->fileExists($new . '/' . $dirName)){ |
| 202 |
|
$this->move($new . '/' . $dirName, $old . '/' . $dirName); |
| 203 |
|
} |
|
@@ 201-203 (lines=3) @@
|
| 198 |
|
if ($this->fileExists($old . '/' . $dirName)){ |
| 199 |
|
$this->move($old . '/' . $dirName, $temp . '/' . $dirName); |
| 200 |
|
} |
| 201 |
|
if ($this->fileExists($new . '/' . $dirName)){ |
| 202 |
|
$this->move($new . '/' . $dirName, $old . '/' . $dirName); |
| 203 |
|
} |
| 204 |
|
} |
| 205 |
|
|
| 206 |
|
} |