%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps/files_external/3rdparty/icewind/smb/src/ |
Current File : /www/varak.net/nextcloud.varak.net/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php |
<?php /** * SPDX-FileCopyrightText: 2014 Robin Appelman <robin@icewind.nl> * SPDX-License-Identifier: MIT */ namespace Icewind\SMB; interface IFileInfo { /* * Mappings of the DOS mode bits, as returned by smbc_getxattr() when the * attribute name "system.dos_attr.mode" (or "system.dos_attr.*" or * "system.*") is specified. */ const MODE_READONLY = 0x01; const MODE_HIDDEN = 0x02; const MODE_SYSTEM = 0x04; const MODE_VOLUME_ID = 0x08; const MODE_DIRECTORY = 0x10; const MODE_ARCHIVE = 0x20; const MODE_NORMAL = 0x80; public function getPath(): string; public function getName(): string; public function getSize(): int; public function getMTime(): int; public function isDirectory(): bool; public function isReadOnly(): bool; public function isHidden(): bool; public function isSystem(): bool; public function isArchived(): bool; /** * @return ACL[] */ public function getAcls(): array; }