📄️ Melon.std.fs.write(path, content)
Writes all the text inside a file, will create a new file if it not exist.
📄️ Melon.std.fs.writeText(path, content)
Writes all the text inside a file, will create a new file if it not exist.
📄️ Melon.std.fs.writeBytes(path, content)
Writes all the bytes inside a file, will create a new file if it not exist.
📄️ Melon.std.fs.writeBytesAsync(path, content)
Writes all the bytes inside a file, will create a new file if it not exist.
📄️ Melon.std.fs.renameFile(path, newName)
Renames a file to the new desired name.
📄️ Melon.std.fs.renameFileAsync(path, newName)
Renames a file to the new desired name.
📄️ Melon.std.fs.readText(path)
Readss a file text content and returns it as string.
📄️ Melon.std.fs.readTextAsync(path)
Readss a file text content and returns it as string.
📄️ Melon.std.fs.readBytes(path)
Readss a file bytes content and returns it as string.
📄️ Melon.std.fs.readBytesAsync(path)
Reads a file bytes content and returns it as string.
📄️ Melon.std.fs.createDirectory(path)
Creates a new directory with the specified path.
📄️ Melon.std.fs.createDirectoryAsync(path)
Creates a new directory with the specified path.
📄️ Melon.std.fs.deleteFile(path)
Removes the specified file from the system.
📄️ Melon.std.fs.deleteFileAsync(path)
Removes the specified file from the system.
📄️ Melon.std.fs.deleteDirectory(path)
Removes the specified directory from the system.
📄️ Melon.std.fs.copyFile(path)
Copy the specified file to the specified target.
📄️ Melon.std.fs.deleteDirectoryAsync(path)
Removes the specified directory from the system.
📄️ Melon.std.fs.copyFileAsync(path)
Copy the specified file to the specified target.
📄️ Melon.std.fs.moveFile(path)
Moves the specified file to the specified target.
📄️ Melon.std.fs.moveFileAsync(path)
Moves the specified file to the specified target.
📄️ Melon.std.fs.renameDirectory(path, newName)
Renames the target directory.
📄️ Melon.std.fs.renameDirectoryAsync(path, newName)
Renames the target directory.