Skip to content
Snippets Groups Projects
Unverified Commit 62bb9910 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Add check for linux os

parent 459477e2
No related branches found
No related tags found
No related merge requests found
<?php <?php
/** /**
* @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, ownCloud, Inc.
* @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
* *
* @author Andreas Fischer <bantu@owncloud.com> * @author Andreas Fischer <bantu@owncloud.com>
* @author Lukas Reschke <lukas@statuscode.ch> * @author Lukas Reschke <lukas@statuscode.ch>
...@@ -195,7 +196,10 @@ class LargeFileHelper { ...@@ -195,7 +196,10 @@ class LargeFileHelper {
*/ */
public function getFileMtime($fullPath) { public function getFileMtime($fullPath) {
if (\OC_Helper::is_function_enabled('exec')) { if (\OC_Helper::is_function_enabled('exec')) {
return $this->exec('stat -c %Y ' . escapeshellarg($fullPath)); $os = strtolower(php_uname('s'));
if (strpos($os, 'linux') !== false) {
return $this->exec('stat -c %Y ' . escapeshellarg($fullPath));
}
} }
return filemtime($fullPath); return filemtime($fullPath);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment