| 1 | //! File System. |
| 2 | |
| 3 | const std = @import("std.zig"); |
| 4 | |
| 5 | /// Deprecated, use `std.Io.Dir.path`. |
| 6 | pub const path = @import("fs/path.zig"); |
| 7 | /// Deprecated, use `std.base64.url_safe_alphabet_chars`. |
| 8 | pub const base64_alphabet = std.base64.url_safe_alphabet_chars; |
| 9 | /// Deprecated, use `std.base64.url_safe.Encoder`. |
| 10 | pub const base64_encoder = std.base64.url_safe.Encoder; |
| 11 | /// Deprecated, use `std.base64.url_safe.Decoder`. |
| 12 | pub const base64_decoder = std.base64.url_safe.Decoder; |
| 13 | /// Deprecated, use `std.Io.Dir.max_path_bytes`. |
| 14 | pub const max_path_bytes = std.Io.Dir.max_path_bytes; |
| 15 | /// Deprecated, use `std.Io.Dir.max_name_bytes`. |
| 16 | pub const max_name_bytes = std.Io.Dir.max_name_bytes; |
| 17 | |
| 18 | test { |
| 19 | _ = path; |
| 20 | _ = @import("fs/test.zig"); |
| 21 | } |