Server IP : 184.154.167.98 / Your IP : 18.216.156.226 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/apps/files_external/3rdparty/icewind/smb/src/ |
Upload File : |
<?php /** * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> * This file is licensed under the Licensed under the MIT license: * http://opensource.org/licenses/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; }