9 lines
215 B
PHP
9 lines
215 B
PHP
<?php
|
|
|
|
class RippingCluster_Utility_DvdDirectoryIterator extends FilterIterator {
|
|
public function accept() {
|
|
return is_dir($this->current()->getPathname() . DIRECTORY_SEPARATOR . 'VIDEO_TS');
|
|
}
|
|
}
|
|
|
|
?>
|