Go to file
Paul Campbell d0aee99c83
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful
feat(fs): add dir_read()
2024-05-17 12:08:56 +01:00
.cargo feat: initial empty library 2024-04-08 14:33:39 +01:00
.git-hooks feat: initial empty library 2024-04-08 14:33:39 +01:00
src feat(fs): add dir_read() 2024-05-17 12:08:56 +01:00
.git-next.toml build: Add .git-next.toml config file 2024-04-16 07:06:50 +01:00
.gitignore feat: initial empty library 2024-04-08 14:33:39 +01:00
.rgignore feat: initial empty library 2024-04-08 14:33:39 +01:00
.woodpecker.yml chore(deps): update docker.io/woodpeckerci/plugin-docker-buildx docker tag to v4 2024-05-07 10:47:42 +00:00
bacon.toml feat: initial empty library 2024-04-08 14:33:39 +01:00
Cargo.toml feat(fs): add dir_read() 2024-05-17 12:08:56 +01:00
Dockerfile.builder build(docker): Add Dockerfile for the builder 2024-04-08 16:48:34 +01:00
justfile build(justfile): add validate dev branch recipe 2024-04-28 11:29:44 +01:00
LICENSE feat: initial empty library 2024-04-08 14:33:39 +01:00
README.md feat(fs): new fs module to replace filesystem 2024-04-28 11:29:44 +01:00
renovate.json chore(deps): prevent renovate creating pointless PRs 2024-04-27 14:29:48 +01:00

kxio

status-badge

Provides injectable Filesystem and Network resources to make code more testable.

FileSystem

There are two FileSystem implementation: [filesystem] and [fs].

  • [filesystem] is the legacy implementation and will be removed in a future version.
  • [fs] is the current version and is intended to stand-in for and extend the [std::fs] module from the Standard Library.

std::fs alternatives

To Do [std::fs] [kxio::fs::FileSystem]
[ ] canonicalize path_canonicalize Returns the canonical, absolute form of a path with all intermediate components normalized and symbolic links resolved.
[ ] copy file_copy Copies the contents of one file to another. This function will also copy the permission bits of the original file to the destination file.
[ ] create_dir dir_create Creates a new, empty directory at the provided path
[ ] create_dir_all dir_create_all Recursively create a directory and all of its parent components if they are missing.
[ ] hard_link link_create Creates a new hard link on the filesystem.
[ ] metadata path_metadata Given a path, query the file system to get information about a file, directory, etc.
[ ] read file_read Read the entire contents of a file into a bytes vector.
[ ] read_dir dir_read Returns an iterator over the entries within a directory.
[ ] read_link link_read Reads a symbolic link, returning the file that the link points to.
[x] read_to_string file_read_to_string Read the entire contents of a file into a string.
[ ] remove_dir dir_remove Removes an empty directory.
[ ] remove_dir_all dir_remove_all Removes a directory at this path, after removing all its contents. Use carefully!
[ ] remove_file file_remove Removes a file from the filesystem.
[ ] rename path_rename Rename a file or directory to a new name, replacing the original file if to already exists.
[ ] set_permissions path_set_permissions Changes the permissions found on a file or a directory.
[ ] symlink_metadata link_metadata Query the metadata about a file without following symlinks.
[x] write file_write Write a slice as the entire contents of a file.

Network

The entire [network] module needs to be completly rewritten It's use is strongly discouraged. A new [net] module will likely be its replacement.