aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/LargeFileHelper.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-10-25 11:37:16 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-10-25 11:37:16 +0200
commitdf3444493b02398e235f0af1f0069425f1b156aa (patch)
treef3eb981c811448284cc9864096cf47b3fcb9b42d /lib/private/LargeFileHelper.php
parent740ff9108b4c600ba2b0a13139ffc84ce09579b1 (diff)
downloadnextcloud-server-df3444493b02398e235f0af1f0069425f1b156aa.tar.gz
nextcloud-server-df3444493b02398e235f0af1f0069425f1b156aa.zip
Remove not existent function call
- Removes a not existent function call - Removes a fallback for Windows Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/LargeFileHelper.php')
-rw-r--r--lib/private/LargeFileHelper.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/private/LargeFileHelper.php b/lib/private/LargeFileHelper.php
index 9d0fe864033..4363fb42cc6 100644
--- a/lib/private/LargeFileHelper.php
+++ b/lib/private/LargeFileHelper.php
@@ -51,7 +51,7 @@ class LargeFileHelper {
public function __construct() {
$pow_2_53 = floatval(self::POW_2_53_MINUS_1) + 1.0;
if ($this->formatUnsignedInteger($pow_2_53) !== self::POW_2_53) {
- throw new \RunTimeException(
+ throw new \RuntimeException(
'This class assumes floats to be double precision or "better".'
);
}
@@ -98,10 +98,6 @@ class LargeFileHelper {
if (!is_null($fileSize)) {
return $fileSize;
}
- $fileSize = $this->getFileSizeViaCOM($filename);
- if (!is_null($fileSize)) {
- return $fileSize;
- }
$fileSize = $this->getFileSizeViaExec($filename);
if (!is_null($fileSize)) {
return $fileSize;
@@ -154,12 +150,6 @@ class LargeFileHelper {
$result = $this->exec("stat -c %s $arg");
} else if (strpos($os, 'bsd') !== false || strpos($os, 'darwin') !== false) {
$result = $this->exec("stat -f %z $arg");
- } else if (strpos($os, 'win') !== false) {
- $result = $this->exec("for %F in ($arg) do @echo %~zF");
- if (is_null($result)) {
- // PowerShell
- $result = $this->exec("(Get-Item $arg).length");
- }
}
return $result;
}