·
123 commits
to main
since this release
Patch Changes
-
#152
8e7773eThanks @ghostwriternr! - Add exists() method to check if a file or directory existsThis adds a new
exists()method to the SDK that checks whether a file or directory exists at a given path. The method returns a boolean indicating existence, similar to Python'sos.path.exists()and JavaScript'sfs.existsSync().The implementation is end-to-end:
- New
FileExistsResultandFileExistsRequesttypes in shared package - Handler endpoint at
/api/existsin container layer - Client method in
FileClientandSandboxclasses - Full test coverage (unit tests and E2E tests)
- New