diff --git a/src/TgSharp.Core/FileSessionStore.cs b/src/TgSharp.Core/FileSessionStore.cs index 071656df..cda49b16 100644 --- a/src/TgSharp.Core/FileSessionStore.cs +++ b/src/TgSharp.Core/FileSessionStore.cs @@ -48,6 +48,22 @@ public Session Load (string sessionUserId) } } + public void Delete (Session session) + { + string sessionFileName = $"{session.SessionUserId}.dat"; + var sessionPath = basePath == null ? sessionFileName : + Path.Combine (basePath.FullName, sessionFileName); + + if (File.Exists(sessionPath)) + { + File.Delete(sessionFileName); + } + else + { + // No throwing exception if not exists + } + } + public static Session FromBytes (byte [] buffer, ISessionStore store, string sessionUserId) { using (var stream = new MemoryStream (buffer))