Hello! I’ve been wondering for a while, is there (still) no implementation of file operations for no_std environments? My guess is because it assumes that any environment that is using no_std for good reason probably wouldn’t have a file system to begin with, but I digress.
operations depending on an operating system belong to std
, not core
.
core
exists to support the language, and core
must work for all supported targets, including those embedded systems with very limited compute power,
1 Like