123456789101112131415161718192021 |
- using Serilog.Sinks.File;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace VeloeMinecraftLauncher.Utils
- {
- internal class CaptureFilePathHook : FileLifecycleHooks
- {
- public string? Path { get; private set; }
- public override Stream OnFileOpened(string path, Stream underlyingStream, Encoding encoding)
- {
- Path = path;
- return base.OnFileOpened(path, underlyingStream, encoding);
- }
- }
- }
|