2017-08-22 09:44:52 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2017-08-22 09:44:52 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-08-22 09:44:52 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Files\Config;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Holds information about a mount for a user
|
|
|
|
|
*
|
|
|
|
|
* @since 13.0.0
|
|
|
|
|
*/
|
|
|
|
|
interface ICachedMountFileInfo extends ICachedMountInfo {
|
|
|
|
|
/**
|
|
|
|
|
* Return the path for the file within the cached mount
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
* @since 13.0.0
|
|
|
|
|
*/
|
2022-02-10 08:15:07 -05:00
|
|
|
public function getInternalPath(): string;
|
2017-08-22 09:44:52 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
* @since 13.0.0
|
|
|
|
|
*/
|
2022-02-10 08:15:07 -05:00
|
|
|
public function getPath(): string;
|
2017-08-22 09:44:52 -04:00
|
|
|
}
|