ext4_rs 0.1.0

Cross-platform rust ext4.
Documentation
1
2
3
4
5
6
7
8
9
10
import os

if not os.path.exists("test_files"):
    os.mkdir("test_files")

for i in range(2):
    name = "test_files/"+ str(i) + ".txt"
    f = open(name, "w")
    f.write(str(i)  * 200000000)
    f.close()