Generic
extends Stream
in package
implements
Pathable, Statable, Touchable
Class \Hoa\File\Generic.
Describe a super-file.
Tags
Table of Contents
Interfaces
- Pathable
- Interface \Hoa\Stream\IStream\Pathable.
- Statable
- Interface \Hoa\Stream\IStream\Statable.
- Touchable
- Interface \Hoa\Stream\IStream\Touchable.
Properties
- $_mode : string
- Mode.
Methods
- changeGroup() : bool
- Change file group.
- changeMode() : bool
- Change file mode.
- changeOwner() : bool
- Change file owner.
- clearAllStatisticCaches() : void
- Clear all files status cache.
- clearStatisticCache() : void
- Clear file status cache.
- copy() : bool
- Copy file.
- delete() : bool
- Delete a file.
- getATime() : int
- Get last access time of file.
- getBasename() : string
- Get filename component of path.
- getCTime() : int
- Get inode change time of file.
- getDirname() : string
- Get directory name component of path.
- getExtension() : string
- Get file extension (if exists).
- getFilename() : string
- Get filename without extension.
- getGroup() : int
- Get file group.
- getINode() : int
- Get inode.
- getMode() : string
- Get the open mode.
- getMTime() : int
- Get file modification time.
- getOwner() : int
- Get file owner.
- getPermissions() : int
- Get file permissions.
- getReadablePermissions() : string
- Get file permissions as a string.
- getRealPath() : string
- Get a canonicalized absolute pathname.
- getSize() : int
- Get size.
- getStatistic() : array<string|int, mixed>
- Get informations about a file.
- isBlockSpecial() : bool
- Check if it is block special.
- isCaseSensitive() : bool
- Check if the system is case sensitive or not.
- isCharacterSpecial() : bool
- Check if it is character special file.
- isDirectory() : bool
- Check if it is a directory.
- isExecutable() : bool
- Check if the file is executable.
- isFIFOPipe() : bool
- Check if it is a FIFO pipe.
- isFile() : bool
- Check if it is a file.
- isLink() : bool
- Check if it is a link.
- isReadable() : bool
- Check if the file is readable.
- isSocket() : bool
- Check if it is a socket.
- isUnknown() : bool
- Check if it is an unknown type.
- isWritable() : bool
- Check if the file is writable.
- move() : bool
- Move a file.
- touch() : bool
- Set access and modification time of file.
- umask() : int
- Change the current umask.
- setMode() : string
- Set the open mode.
Properties
$_mode
Mode.
protected
string
$_mode
= null
Methods
changeGroup()
Change file group.
public
changeGroup(mixed $group) : bool
Parameters
- $group : mixed
-
Group name or number.
Return values
boolchangeMode()
Change file mode.
public
changeMode(int $mode) : bool
Parameters
- $mode : int
-
Mode (in octal!).
Return values
boolchangeOwner()
Change file owner.
public
changeOwner(mixed $user) : bool
Parameters
- $user : mixed
-
User.
Return values
boolclearAllStatisticCaches()
Clear all files status cache.
public
static clearAllStatisticCaches() : void
clearStatisticCache()
Clear file status cache.
public
clearStatisticCache() : void
copy()
Copy file.
public
copy(string $to[, bool $force = StreamIStreamTouchable::DO_NOT_OVERWRITE ]) : bool
Return the destination file path if succeed, false otherwise.
Parameters
- $to : string
-
Destination path.
- $force : bool = StreamIStreamTouchable::DO_NOT_OVERWRITE
-
Force to copy if the file $to already exists. Use the \Hoa\Stream\IStream\Touchable::*OVERWRITE constants.
Return values
booldelete()
Delete a file.
public
delete() : bool
Return values
boolgetATime()
Get last access time of file.
public
getATime() : int
Return values
intgetBasename()
Get filename component of path.
public
getBasename() : string
Return values
stringgetCTime()
Get inode change time of file.
public
getCTime() : int
Return values
intgetDirname()
Get directory name component of path.
public
getDirname() : string
Return values
stringgetExtension()
Get file extension (if exists).
public
getExtension() : string
Return values
stringgetFilename()
Get filename without extension.
public
getFilename() : string
Return values
stringgetGroup()
Get file group.
public
getGroup() : int
Return values
intgetINode()
Get inode.
public
getINode() : int
Return values
intgetMode()
Get the open mode.
public
getMode() : string
Return values
stringgetMTime()
Get file modification time.
public
getMTime() : int
Return values
intgetOwner()
Get file owner.
public
getOwner() : int
Return values
intgetPermissions()
Get file permissions.
public
getPermissions() : int
Return values
intgetReadablePermissions()
Get file permissions as a string.
public
getReadablePermissions() : string
Result sould be interpreted like this:
- s: socket;
- l: symbolic link;
- -: regular;
- b: block special;
- d: directory;
- c: character special;
- p: FIFO pipe;
- u: unknown.
Return values
stringgetRealPath()
Get a canonicalized absolute pathname.
public
getRealPath() : string
Return values
stringgetSize()
Get size.
public
getSize() : int
Return values
intgetStatistic()
Get informations about a file.
public
getStatistic() : array<string|int, mixed>
Return values
array<string|int, mixed>isBlockSpecial()
Check if it is block special.
public
isBlockSpecial() : bool
Return values
boolisCaseSensitive()
Check if the system is case sensitive or not.
public
static isCaseSensitive() : bool
Return values
boolisCharacterSpecial()
Check if it is character special file.
public
isCharacterSpecial() : bool
Return values
boolisDirectory()
Check if it is a directory.
public
isDirectory() : bool
Return values
boolisExecutable()
Check if the file is executable.
public
isExecutable() : bool
Return values
boolisFIFOPipe()
Check if it is a FIFO pipe.
public
isFIFOPipe() : bool
Return values
boolisFile()
Check if it is a file.
public
isFile() : bool
Return values
boolisLink()
Check if it is a link.
public
isLink() : bool
Return values
boolisReadable()
Check if the file is readable.
public
isReadable() : bool
Return values
boolisSocket()
Check if it is a socket.
public
isSocket() : bool
Return values
boolisUnknown()
Check if it is an unknown type.
public
isUnknown() : bool
Return values
boolisWritable()
Check if the file is writable.
public
isWritable() : bool
Return values
boolmove()
Move a file.
public
move(string $name[, bool $force = StreamIStreamTouchable::DO_NOT_OVERWRITE ][, bool $mkdir = StreamIStreamTouchable::DO_NOT_MAKE_DIRECTORY ]) : bool
Parameters
- $name : string
-
New name.
- $force : bool = StreamIStreamTouchable::DO_NOT_OVERWRITE
-
Force to move if the file $name already exists. Use the \Hoa\Stream\IStream\Touchable::*OVERWRITE constants.
- $mkdir : bool = StreamIStreamTouchable::DO_NOT_MAKE_DIRECTORY
-
Force to make directory if does not exist. Use the \Hoa\Stream\IStream\Touchable::*DIRECTORY constants.
Return values
booltouch()
Set access and modification time of file.
public
touch([int $time = -1 ][, int $atime = -1 ]) : bool
Parameters
- $time : int = -1
-
Time. If equals to -1, time() should be used.
- $atime : int = -1
-
Access time. If equals to -1, $time should be used.
Return values
boolumask()
Change the current umask.
public
static umask([int $umask = null ]) : int
Parameters
- $umask : int = null
-
Umask (in octal!). If null, given the current umask value.
Return values
intsetMode()
Set the open mode.
protected
setMode(string $mode) : string
Parameters
- $mode : string
-
Open mode. Please, see the child::MODE_* constants.