Function readLinkW [src]
Windows-only. Same as readLink except the pathname parameter
is WTF16 LE encoded.
Prototype
pub fn readLinkW(self: Dir, sub_path_w: []const u16, buffer: []u8) ![]u8
Parameters
self: Dir
sub_path_w: []const u16
buffer: []u8
Source
pub fn readLinkW(self: Dir, sub_path_w: []const u16, buffer: []u8) ![]u8 {
return windows.ReadLink(self.fd, sub_path_w, buffer);
}