mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
Fixed image path
This commit is contained in:
parent
d6c461ef80
commit
389b3fbe60
1 changed files with 5 additions and 5 deletions
|
|
@ -13,7 +13,7 @@ This is essential for using the VFS.
|
|||
|
||||
Right after this lines is done, an message looking like this will apper on your screen:
|
||||
|
||||

|
||||

|
||||
|
||||
This message is printed by the initialize method and it provide info about the file system.
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ We use this function to get the size of the available free space in our file sys
|
|||
You have probably noticed the "0:/" argument passed to this function, this is the id of the drive we want to get available free space of.
|
||||
Cosmos using DOS drive naming system and this is why we use "0".
|
||||
|
||||

|
||||

|
||||
|
||||
## Get file system type.
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ Console.WriteLine("File System Type: " + fs_type);
|
|||
```
|
||||
This will let us know what the file system type.
|
||||
|
||||

|
||||

|
||||
|
||||
## Get files list.
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ foreach (var directoryEntry in directory_list)
|
|||
}
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
## Read files.
|
||||
|
||||
|
|
@ -96,4 +96,4 @@ catch(Exception e)
|
|||
```
|
||||
You must have noticed the try-catch block have been added here, you can find out more about the exception types each function in the api docs.
|
||||
|
||||

|
||||

|
||||
|
|
|
|||
Loading…
Reference in a new issue