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)
21
program?.UserJwtsFilePath =
_filePath
;
28
if (File.Exists(
_filePath
))
30
using var fileStream = new FileStream(
_filePath
, FileMode.Open, FileAccess.Read);
46
File.Move(tempFilename,
_filePath
, overwrite: true);
49
using var fileStream = new FileStream(
_filePath
, FileMode.Create, FileAccess.Write);