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