We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ln::FileSystem は、ファイルの読み書きや存在チェック、ディレクトリ走査などを行うためのユーティリティクラスです。
ln::FileSystem
auto result = ln::FileSystem::readAllText(U"file.txt"); if (!result) { // Access error. return; } ln::String str = *result;
ln::String str = U"Contents."; auto result = ln::FileSystem::writeAllText(U"file.txt", str); if (!result) { // Access error. return; }