//! Verifies that a file exists in a directory.
//!
//! Usage:
//!
//! ```
//! exists_in
//! ```
//!
//! Where `/` is the full path to the file.
//! `` must be an absolute path.
const std = @import("std");
pub fn main() !void {
var arena_state = std.heap.ArenaAllocator.init(std.heap.page_allocator);
const arena = arena_state.allocator();
defer arena_state.deinit();
try run(arena);
}
fn run(allocator: std.mem.Allocator) !void {
var args = try std.process.argsWithAllocator(allocator);
defer args.deinit();
_ = args.next() orelse unreachable; // skip binary name
const dir_path = args.next() orelse {
std.log.err("missing argument", .{});
return error.BadUsage;
};
const relpath = args.next() orelse {
std.log.err("missing argument", .{});
return error.BadUsage;
};
const io = std.Io.Threaded.global_single_threaded.ioBasic();
var dir = try std.Io.Dir.cwd().openDir(io, dir_path, .{});
defer dir.close(io);
_ = try dir.statFile(io, relpath, .{});
}