Updated Storage (markdown)

TheMode 2020-09-27 22:18:39 +02:00
parent face3f5dd8
commit 560329d761

@ -14,7 +14,7 @@ Storage locations are a way to separate your data in multiple categories. There
```java
StorageLocation storageLocation = storageManager.getLocation(YOUR_LOCATION_IDENTIFIER);
```
Please note that the "location" is not related in any way to a folder or a file, it can be but this is dependent on the StorageSystem implementation you are using (the storage system "FileStorageSystem" that we took as an example above WILL use/create a folder with the exact same name as the location, but this will not always be the case)
Please note that the "location" is not related in any way to a folder or a file, it can be but this is dependent on the StorageSystem implementation you are using (the storage system "FileStorageSystem" that we took as an example above WILL use/create a folder with the exact same name as the location, but this will not always be the case for all)
You can then write/read anything from it as long as you know the key
```java