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