Skip to content

Commit 792e812

Browse files
committed
updated README
1 parent a6e6685 commit 792e812

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ from niemafs import DirFS
4040
fs = DirFS(path=target_path)
4141
```
4242

43-
### [`GcmFS`](https://niema.net/NiemaFS/#niemafs.GcmFS) — Nintendo GameCube mini-DVD
43+
### [`GcmFS`](https://niema.net/NiemaFS/#niemafs.GcmFS) — Nintendo GameCube Mini-DVD
4444
Note that the Nintendo GameCube GCM file system does not contain file/folder timestamps. As a result, iterating over a `GcmFS` object will yield `None` for the timestamps.
4545

4646
```python
@@ -49,6 +49,15 @@ with open(target_path, 'rb') as target_file:
4949
fs = GcmFS(path=target_path, file_obj=target_file)
5050
```
5151

52+
### [`GcRarcFS`](https://niema.net/NiemaFS/#niemafs.GcRarcFS) — Nintendo GameCube RARC Archive
53+
Note that the Nintendo GameCube RARC file system does not contain file/folder timestamps. As a result, iterating over a `GcRarcFS` object will yield `None` for the timestamps.
54+
55+
```python
56+
from niemafs import GcRarcFS
57+
with open(target_path, 'rb') as target_file:
58+
fs = GcRarcFS(path=target_path, file_obj=target_file)
59+
```
60+
5261
### [`IsoFS`](https://niema.net/NiemaFS/#niemafs.IsoFS) — ISO 9660 Disc Image
5362

5463
```python
@@ -66,6 +75,7 @@ with open(target_path, 'rb') as target_file:
6675
```
6776

6877
### [`TgcFS`](https://niema.net/NiemaFS/#niemafs.TgcFS) — Nintendo GameCube TGC Image
78+
Note that the Nintendo GameCube TGC file system does not contain file/folder timestamps. As a result, iterating over a `TgcFS` object will yield `None` for the timestamps.
6979

7080
```python
7181
from niemafs import TgcFS

0 commit comments

Comments
 (0)