1 write to _filePath
dotnet-user-jwts (1)
Helpers\JwtStore.cs (1)
17_filePath = Path.Combine(Path.GetDirectoryName(PathHelper.GetSecretsPathFromSecretsId(userSecretsId)), FileName);
5 references to _filePath
dotnet-user-jwts (5)
Helpers\JwtStore.cs (5)
21program?.UserJwtsFilePath = _filePath; 28if (File.Exists(_filePath)) 30using var fileStream = new FileStream(_filePath, FileMode.Open, FileAccess.Read); 46File.Move(tempFilename, _filePath, overwrite: true); 49using var fileStream = new FileStream(_filePath, FileMode.Create, FileAccess.Write);