2024-03-27 04:40:24 -04:00
|
|
|
//
|
|
|
|
// Prerequisite :
|
|
|
|
// - exercise/106_files.zig, or
|
|
|
|
// - create a file {project_root}/output/zigling.txt
|
|
|
|
// with content `It's zigling time!`(18 byte total)
|
|
|
|
//
|
2024-06-12 03:29:11 -04:00
|
|
|
// Now there's no point in writing to a file if we don't read from it, am I right?
|
|
|
|
// Let's write a program to read the content of the file that we just created.
|
2024-03-27 04:40:24 -04:00
|
|
|
//
|
2024-05-04 16:53:04 -04:00
|
|
|
// I am assuming that you've created the appropriate files for this to work.
|
2024-03-27 04:40:24 -04:00
|
|
|
//
|
2024-06-12 03:29:11 -04:00
|
|
|
// Alright, bud, lean in close. Here's the game plan.
|
2024-03-27 04:40:24 -04:00
|
|
|
// - First, we open the {project_root}/output/ directory
|
|
|
|
// - Secondly, we open file `zigling.txt` in that directory
|
2024-06-12 03:29:11 -04:00
|
|
|
// - Then, we initalize an array of characters with all letter 'A', and print it
|
|
|
|
// - After that, we read the content of the file into the array
|
|
|
|
// - Finally, we print out the content we just read
|
2024-03-27 04:40:24 -04:00
|
|
|
|
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn main() !void {
|
|
|
|
// Get the current working directory
|
|
|
|
const cwd = std.fs.cwd();
|
|
|
|
|
|
|
|
// try to open ./output assuming you did your 106_files exercise
|
|
|
|
var output_dir = try cwd.openDir("output", .{});
|
|
|
|
defer output_dir.close();
|
|
|
|
|
|
|
|
// try to open the file
|
|
|
|
const file = try output_dir.openFile("zigling.txt", .{});
|
|
|
|
defer file.close();
|
|
|
|
|
2024-06-12 03:29:11 -04:00
|
|
|
// initalize an array of u8 with all letter 'A'
|
|
|
|
// we need to pick the size of the array, 64 seems like a good number
|
2024-03-27 04:40:24 -04:00
|
|
|
// fix the initalization below
|
2024-06-21 09:21:03 -04:00
|
|
|
var content = [_]u8{'A'} ** 64;
|
2024-03-27 04:40:24 -04:00
|
|
|
// this should print out : `AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA`
|
|
|
|
std.debug.print("{s}\n", .{content});
|
|
|
|
|
2024-05-04 16:53:04 -04:00
|
|
|
// okay, seems like a threat of violence is not the answer in this case
|
2024-06-12 03:29:11 -04:00
|
|
|
// can you go here to find a way to read the content?
|
2024-03-27 04:40:24 -04:00
|
|
|
// https://ziglang.org/documentation/master/std/#std.fs.File
|
2024-05-04 16:53:04 -04:00
|
|
|
// hint: you might find two answers that are both vaild in this case
|
2024-06-21 09:21:03 -04:00
|
|
|
const bytes_read = try file.readAll(&content);
|
2024-03-27 04:40:24 -04:00
|
|
|
|
2024-06-12 03:29:11 -04:00
|
|
|
// Woah, too screamy. I know you're excited for zigling time but tone it down a bit.
|
|
|
|
// Can you print only what we read from the file?
|
2024-05-04 16:53:04 -04:00
|
|
|
std.debug.print("Successfully Read {d} bytes: {s}\n", .{
|
|
|
|
bytes_read,
|
2024-06-21 09:21:03 -04:00
|
|
|
content[0..bytes_read], // change this line only
|
2024-03-27 04:40:24 -04:00
|
|
|
});
|
|
|
|
}
|