ShardPath
Returns the file system path to the shard’s application data directory.
This is the Stealth-specific directory where shard data files (cached map data, user statics, etc.) are stored.
In Python, this method is named GetShardPath.
Возвращает путь в файловой системе к каталогу данных приложения для шарда.
Это специфичный для Stealth каталог, в котором хранятся файлы данных шарда (кэшированные данные карт, пользовательские статики и т.д.).
В Python метод называется GetShardPath.
function ShardPath: String;
def GetShardPath() -> str: ...
begin
AddToSystemJournal('Shard data path: ' + ShardPath);
end.
AddToSystemJournal(f'Shard data path: {GetShardPath()}')