private SystemState CreateFileBackedSystemState()
        {
            var systemStateDirectoryPath = Path.Combine(clientConfiguration.ConfigurationDirectoryPath, kSystemStateConfigurationDirectoryName);
            var fileBackedSystemState    = new FileBackedSystemStateImpl(fileSystemProxy, systemStateDirectoryPath);

            return(fileBackedSystemState);
        }
 private SystemState CreateFileBackedSystemState()
 {
     var systemStateDirectoryPath = Path.Combine(clientConfiguration.ConfigurationDirectoryPath, kSystemStateConfigurationDirectoryName);
      var fileBackedSystemState = new FileBackedSystemStateImpl(fileSystemProxy, systemStateDirectoryPath);
      return fileBackedSystemState;
 }