File

Provides a small interface for working with files

Table of contents

  1. Wildcards
  2. read(src)
  3. write(text, dst)
  4. exists(src)

Wildcards

The file paths used the xs should be relative and they should make use of the built in wildcards.

  • "[game]" - Expands to the directory of the game (rom). Read only location at when deployed.
  • "[save]" - Expands to a directory for storing player data. Will cloud sync when possible.
  • "[games]" - Expands to the root directory of all games. Read only location at when deployed.

Example

File.read("[game]/assets/textures/flower.png")
// Windows when developing
// -> "C:/users/your_user/Documents/xs/games/your_game/assets/textures/flower.png"
//       or
// Windows + Steam
// -> "C:/Program Files (x86)/Steam/steamapps/common/your_game/assets/textures/flower.png" 

File.write("[save]/save_game.dat")
// -> "C:/users/your_user/AppData/Roaming/xs/your_game/save_game.dat"
// Windows when developing
//         or
// -> "save:save_game.dat"
//  Consoles (just for example)

read(src)

Reads a whole file to a string

write(text, dst)

Writes a text string to a file

exists(src)

Checks if the file exists


xs - lovingly made at Breda University of Applied Sciences