Skip to content

Commit c98af51

Browse files
committed
doc: update README.md
1 parent 1bb8036 commit c98af51

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,19 @@ creating files on the hard drive.
6262
- [x] Create a virtual file system
6363
- [x] Create a virtual file or directory
6464
- [x] Print the contents of a virtual file system as a tree
65-
- [ ] ...
65+
- [x] Delete a virtual file or directory
66+
- [x] Move a virtual file or directory
67+
- [x] Rename a virtual file or directory
68+
- [x] Read and write content to a virtual file
69+
- [ ] Copy a virtual file or directory (planned)
70+
- [ ] Check if a virtual file or directory exists (planned)
71+
- [ ] Get the size of a virtual file or directory (planned)
72+
- [x] Get the creation, access, and modification times of a virtual file or directory
73+
- [x] Support for events (file created, file deleted, etc.)
74+
- [ ] Support for custom metadata on files and directories
75+
- [ ] Support for file and directory permissions (planned)
76+
- [ ] Support for symbolic links (planned)
77+
- ...
6678

6779
## 📄 Documentation
6880

@@ -77,23 +89,23 @@ discuss it.
7789

7890
### 📋 Prerequisites
7991

80-
- .NET 6.0
92+
- .NET 6.0 (supported versions: 6.x to 8.x)
8193
- A C# IDE (Visual Studio, Rider, etc.)
8294
- A C# compiler (dotnet CLI, etc.)
8395

8496
### 🚀 We use the latest C# features
8597

86-
This library targets .NET 7.0 and uses the latest C# features. It is written in C# 11.0 and uses the new `init`
87-
properties, `record` types, `switch` expressions, `using` declarations, and more.
98+
This library targets .NET 8.0 and uses the latest C# features. It is written in C# 12.0 and uses the new `init`
99+
properties, `record` types, `switch` expressions, `using` declarations and more.
88100

89-
I invite you to read the [C# 11.0 documentation](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11) to
101+
I invite you to read the [C# 12.0 documentation](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-12) to
90102
learn more about these features.
91103

92104
### 📦 NuGet
93105

94-
VirtualFileSystem is available on [NuGet](https://www.nuget.org/packages/VirtualFileSystem/).
106+
VirtualFileSystem is available on [NuGet](https://www.nuget.org/packages/Atypical.VirtualFileSystem).
95107

96-
You can install it using the .NET Core CLI:
108+
You can install it using the .NET CLI:
97109

98110
```bash
99111
dotnet add package Atypical.VirtualFileSystem

0 commit comments

Comments
 (0)