The current naming conventions are bit inconsistent for real host filesystem and sandboxed, even if the behaviour is similar.
e.g
Host FS: src/../filesystem.ts
...
readonly readFileString
readonly writeFileString
..
with sandbox FS: src/…/sandbox/../filesystem.ts
...
readFile
writeFile
readFileBuffer
...
The implementation behaviour is same, hence naming could also be same. As usual naming is hard!
The current naming conventions are bit inconsistent for real host filesystem and sandboxed, even if the behaviour is similar.
e.g
Host FS:
src/../filesystem.tswith sandbox FS:
src/…/sandbox/../filesystem.tsThe implementation behaviour is same, hence naming could also be same. As usual naming is hard!