Name
SPVM::Sys::IO::Windows - IO System Call on Windows
Description
SPVM::Sys::IO::Windows
is the Sys::IO::Windows
class in SPVM language.
Usage
use Sys::IO::Windows;
Class Methods
is_symlink
native static method is_symlink : int ($path : string);
The same as Perl -l on Windows.
unlink
native static method unlink : int ($pathname : string);
The same as Perl rename on Windows.
rename
static method rename : int ($oldpath : string, $newpath : string);
The same as Perl rename on Windows.
readlink
native static method readlink : int ($path : string, $buf : mutable string, $bufsiz : int);
The same as Perl readlink on Windows.
get_readlink_buffer_size
native static method get_readlink_buffer_size : int ($path : string);
Gets the "readlink" needed buffer size.
Copyright & License
Copyright (c) 2023 Yuki Kimoto
MIT License