not all storage backends can handle setting the mtime and they might
not always handle that error correctly.
Signed-off-by: Robin Appelman <robin@icewind.nl>
$hooks[] = 'create';
$hooks[] = 'write';
}
- $result = $this->basicOperation('touch', $path, $hooks, $mtime);
+ try {
+ $result = $this->basicOperation('touch', $path, $hooks, $mtime);
+ } catch (\Exception $e) {
+ $this->logger->logException($e, ['level' => ILogger::INFO, 'message' => 'Error while setting modified time']);
+ $result = false;
+ }
if (!$result) {
// If create file fails because of permissions on external storage like SMB folders,
// check file exists and return false if not.