Test code:
conststd=@import("std");
pubfnmain() !void {
if (std.fs.cwd().createFile("file.txt", .{})) |file| {
file.close();
} else|err|switch (err) {
error.PathAlreadyExists=> {},
else=>returnerr,
}
// this should fail, but instead it succeeds and deletes file.txtreturnstd.fs.cwd().deleteDir("file.txt");
}I expect the above to return error.NotDir, but instead it just deletes the file.
Even more minimal example has the same behaviour, assuming file.txt already exists:
conststd=@import("std");
pubfnmain() !void {
// this should fail, but instead it succeeds and deletes file.txtreturnstd.fs.cwd().deleteDir("file.txt");
}
Test code:
I expect the above to return
error.NotDir, but instead it just deletes the file.Even more minimal example has the same behaviour, assuming
file.txtalready exists: