Skip to content
This repository was archived by the owner on Aug 28, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (24 loc) · 936 Bytes

File metadata and controls

27 lines (24 loc) · 936 Bytes

Pirate Game Server

This is a fairly simple application, all it does is copy game files to another folder. It has a pattern regonition. So you can specify which files you want to copy. Later on I would like to add functionality to store them on a server or do something like Steam Cloud. But this is quite simple and useful for now.

The software generates a .json file where the following can be specified.

[
  {
    "GameName": "The Witcher 3",
    "SavedFilesFolderPath": "C:\\Users\\USER\\Documents\\The Witcher 3\\gamesaves",
    "FilePatterns": [
      "*.sav",
      "*.png"
    ],
    "DestinationFolderPath": "C:\\Users\\USER\\Documents\\SavedFiles\\The Witcher 3"
  },
  {
    "GameName": "Bioshock",
    "SavedFilesFolderPath": "C:\\Users\\USER\\Documents\\BioshockHD\\BioShock",
    "FilePatterns": [
      "*.bsb"
    ],
    "DestinationFolderPath": "C:\\Users\\USER\\Documents\\SavedFiles\\Bioshock"
  }
]