_wfopen

Opens the file with the given file name and mode.

version(CRuntime_Microsoft)
extern (C) nothrow @nogc extern
_wfopen
(
const(wchar)* filename
,
const(wchar)* mode
)

Parameters

filename const(wchar)*

The name and path of the file to open, in UTF-16.

mode const(wchar)*

The mode to open the file in.

Return Value

Type: FILE*

A file handle on success, null on failure.

Meta