1 | <?php |
||
8 | class NativeSeekDriver implements ISizeDriver |
||
9 | { |
||
10 | /** |
||
11 | * Returns file size by seeking at the end of file |
||
12 | * @see http://www.php.net/manual/en/function.filesize.php#79023 |
||
13 | * @see http://www.php.net/manual/en/function.filesize.php#102135 |
||
14 | * @param string $path Full path to file |
||
15 | * @return BigInteger |
||
16 | * @throws Exception |
||
17 | */ |
||
18 | public function getFileSize($path) |
||
51 | } |