Declarations
Public Only
namespace fs
struct Metadata {
var is_file : bool
var is_dir : bool
var is_symlink : bool
var len : size_t
var modified : i64
var accessed : i64
var created : i64
var perms : u32
}
struct OpenOptions {
var read : bool
var write : bool
var append : bool
var create : bool
var create_new : bool
var truncate : bool
var binary : bool
}