Opens a file giventhe openmode $open_modeand the file name $file.
The opened file stream is set to $stream_refat index0.
The openmode $open_modeis replaced to a representation of the L<fopen|https://linux.die.net/man/3/fopen> function beforecalling the L<fopen|https://linux.die.net/man/3/fopen> function.
[$open_mode] [The mode of the fopen function]
< rb
> wb
>> wa
+< r+b
+> w+b
+>> a+b
If the systemsupports C<FD_CLOEXEC>, this flag is set to the opened file's file descriptor using L</"fcntl">.
Exceptions:
$stream_refmust be defined. Otherwise an exception is thrown.
The lengthof $stream_refmust be equal to 1. Otherwise an exception is thrown.
Exceptions thrown by L<Sys::IO#fopen|SPVM::Sys::IO/"fopen"> method could be thrown.
Creates the directory giventhe path $dirand the mode $mode.
If $modeis less than 0, $modeis set to 0777.
The permissions of the created directory are ($mode& ~L<umask|/"umask"> & 0777).
In Windows, the mode $modeis ignored.
Exceptions:
Exceptions thrown by L<Sys::IO#mkdir|SPVM::Sys::IO/"mkdir"> method could be thrown.
=head2 umask
C<static method umask: int($mode: int);>
Sets the umaskforthe process to the mode $modeand returns the previous value.
Exceptions:
Exceptions thrown by L<Sys::IO#umask|SPVM::Sys::IO/"umask"> method could be thrown.
=head2 unlink
C<static method unlink: void ($file: string);>
Deletes a file.
In Windows, this method calls L<Sys::IO::Windows#unlink|SPVM::Sys::IO::Windows/"unlink"> method , otherwise calls L<Sys::IO#unlink|SPVM::Sys::IO/"unlink"> method.
Exceptions:
Exceptions thrown by the L<Sys::IO::Windows#unlink|SPVM::Sys::IO::Windows/"unlink"> method or L<Sys::IO#unlink|SPVM::Sys::IO/"unlink"> method could be thrown.
Raname the file name from the old name $old_pathto the new name $new_path.
In Windows, this method calls L<Sys::IO::Windows#rename|SPVM::Sys::IO::Windows/"rename"> method , otherwise calls L<Sys::IO#rename|SPVM::Sys::IO/"rename"> method.
Exceptions:
Exceptions thrown by the L<Sys::IO::Windows#rename|SPVM::Sys::IO::Windows/"rename"> method or L<Sys::IO#rename|SPVM::Sys::IO/"rename"> method could be thrown.
=head2 rmdir
C<static method rmdir: void ($dir: string);>
Deletes the directory giventhe path $dir.
Exceptions:
Exceptions thrown by L<Sys::IO#rmdir|SPVM::Sys::IO/"rmdir"> method could be thrown.
=head2 chdir
C<static method chdir: void ($dir: string);>
Changes the working directory to the path $dir.
Exceptions:
Exceptions thrown by L<Sys::IO#chdir|SPVM::Sys::IO/"chdir"> method could be thrown.
Changes the owner and the group of the file $fileto $ownerand $group.
Exceptions:
Exceptions thrown by L<Sys::IO#chown|SPVM::Sys::IO/"chown"> method could be thrown.
=head2 readlink
C<static method readlink: int($file: string);>
Returns the content of the symbolic linkfile $file.
In Windows thie method calls L<Sys::IO::Windows#readlink|SPVM::Sys::IO::Windows/"readlink"> method , otherwise calls L<Sys::IO#readlink|SPVM::Sys::IO/"readlink"> method .
Exceptions:
Exceptions thrown by L<Sys::IO#readlink|SPVM::Sys::IO/"readlink"> method or L<Sys::IO::Windows#readlink|SPVM::Sys::IO::Windows/"readlink"> method could be thrown.
Creates a path $new_pathsymbolically linked to the path $old_path.
In Windows thie method calls L<Sys::IO::Windows#symlink|SPVM::Sys::IO::Windows/"symlink"> method , otherwise calls L<Sys::IO#symlink|SPVM::Sys::IO/"symlink"> method .
Exceptions:
Exceptions thrown by L<Sys::IO#symlink|SPVM::Sys::IO/"symlink"> method or L<Sys::IO::Windows#symlink|SPVM::Sys::IO::Windows/"symlink"> method could be thrown.
Opens a file stream that joins a process by creating a pipegiventhe command $commandand the openmode $open_mode.
The opened file stream is set to $stream_refat index0.
The openmode $open_modeis replaced to a representation of the L<fopen|https://linux.die.net/man/3/fopen> function beforecalling the L<fopen|https://linux.die.net/man/3/fopen> function.
[$open_mode] [The mode of the fopen function]
|- wb
-| rb
If the systemsupports C<FD_CLOEXEC>, this flag is set to the opened file's file descriptor using L</"fcntl">.
Exceptions:
Exceptions thrown by L<Sys::IO#popen|SPVM::Sys::IO/"popen"> method or L<Sys::IO#_popen|SPVM::Sys::IO/"_popen"> method could be thrown.
Calls L<Sys::Ioctl#ioctlsocket|SPVM::Sys::Ioctl/"ioctlsocket"> method and returns its return value.
OSs other than Windows:
Calls L<Sys::Ioctl#ioctl|SPVM::Sys::Ioctl/"ioctl"> method and returns its return value.
Exceptions:
Exceptions thrown by the L<Sys::Ioctl#ioctl|SPVM::Sys::Ioctl/"ioctl"> method or L<Sys::Ioctl#ioctlsocket|SPVM::Sys::Ioctl/"ioctlsocket"> method could be thrown.
=head2 A
C<static method A : double ($file: string);>
Returns script start timeminus file access timeof the file $file, in days.
$filemust be defined. Otherwise an exception is thrown.
The exceptions thrown by L</"stat"> method could be thrown.
=head2 O
C<static method O : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Othersize ifthe file $fileis owned by real uid, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 R
C<static method R : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis readable by real uid/gid, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 S
C<static method S : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 W
C<static method W : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis writable by real uid/gid, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 X
C<static method X : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis executable by real uid/gid, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 b
C<static method b : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis a block special file, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 c
C<static method c : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis a character special file, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 d
C<static method d : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 e
C<static method e : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 f
C<static method f : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 g
C<static method g : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 k
C<static method k : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 l
C<static method l : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by the L</"lstat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis a symbolic link(false ifsymlinks aren't supported by the file system), returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 o
C<static method o : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 p
C<static method p : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Otherwise ifthe file $fileis a named pipe(FIFO), or Filehandle is a pipe, returns 1, otherwise returns 0.
$filemust be defined. Otherwise an exception is thrown.
=head2 r
C<static method r : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
The exceptions thrown by L</"stat"> method could be thrown.
=head2 u
C<static method u : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 w
C<static method w : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
$filemust be defined. Otherwise an exception is thrown.
=head2 x
C<static method x : int($file: string);>
If If the file doesn't exist or can't be examined(These checks are done by L</"stat"> method), returns 0 and L<errno|SPVM::Errno/"errno"> is set to a positive value.
Identical to L</"stat">, except that ifpath $fileis a symbolic link(or directory junction only in Windows), then the linkitself is stat-ed, not the file that it refers to.
In Windows, this method calls the L<lstat|SPVM::Sys::IO::Windows/"lstat"> method, otherwise calls the L<lstat|SPVM::Sys::IO::Stat/"lstat"> method.
Exceptions:
Exceptions thrown by L<Sys::IO::Stat#lstat|SPVM::Sys::IO::Stat/"lstat"> method or L<Sys::IO::Windows#lstat|SPVM::Sys::IO::Windows/"lstat"> method could be thrown.
Thie methods calls L<Sys::Socket#accept|SPVM::Sys::Socket/"accept"> method given the file descriptor $server_fd, a client address for output, the size of the client address.
The client address foroutput and the size of the client address are automatically created.
$$client_fd_refis set to the returnvalue.
The client address is upgraded to a child class of the L<Sys::Socket::Sockaddr|SPVM::Sys::Socket::Sockaddr> using L<upgrade|SPVM::Sys::Socket::Sockaddr/"upgrade"> method.
If the systemsupports C<FD_CLOEXEC>, The file descriptor flag of $$client_fd_refis set to C<FD_CLOEXEC> using L</"fcntl"> method.
Exceptions:
Exceptions thrown by L<Sys::Socket#accept|SPVM::Sys::Socket/"accept"> method could be thrown.
Receives a message on a socketgiventhe array $sockaddr_reffora peer socketaddress foroutput.
This method calls L<Sys::Socket#recvfrom|SPVM::Sys::Socket/"recvfrom"> method given the arguments given to this method and returns its return value.
$addrlen_refis set to an intreference.
If $sockaddr_refis given, $sockaddris set to a L<Sys::Socket::Sockaddr|SPVM::Sys::Socket::Sockaddr> object.
In this case, $sockaddris upgraded by calling L<Sys::Socket::Sockaddr#upgrade|SPVM::Sys::Socket::Sockaddr/"upgrade"> method and $sockaddr_ref at index 0 is set to it.
Exceptions:
If $sockaddr_refforan array fora peer socketaddress foroutput is defined, the lengthmust be 1.
Exceptions thrown by L<Sys::Socket#recvfrom|SPVM::Sys::Socket/"recvfrom"> method could be thrown.
Returns the packed sockaddr address of the other end of the socketconnection $socket_fd.
This method calls L<Sys::Socket#getpeername|SPVM::Sys::Socket/"getpeername"> method.
The returned packed sockaddr address is upgraded to a child class of the L<Sys::Socket::Sockaddr|SPVM::Sys::Socket::Sockaddr> using L<upgrade|SPVM::Sys::Socket::Sockaddr/"upgrade"> method.
Exceptions:
Exceptions thrown by L<Sys::Socket#getpeername|SPVM::Sys::Socket/"getpeername"> method could be thrown.
The returned packed sockaddr address is upgraded to a child class of the L<Sys::Socket::Sockaddr|SPVM::Sys::Socket::Sockaddr> using L<upgrade|SPVM::Sys::Socket::Sockaddr/"upgrade"> method.
Exceptions:
Exceptions thrown by L<Sys::Socket#getsockname|SPVM::Sys::Socket/"getsockname"> method could be thrown.
If the systemsupports C<FD_CLOEXEC>, this flag is set to the value referenced by $read_fd_refand the value referenced by $write_fd_refusing L</"fcntl">.
=head2 getpgrp
C<static method getpgrp: int($process_id: int);>
Gets the process group number giventhe process ID $process_idof the running this program.