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

native static method is_symlink : int ($path : string);

The same as Perl -l on Windows.

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.

native static method readlink : int ($path : string, $buf : mutable string, $bufsiz : int);

The same as Perl readlink on Windows.

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