internal static void Reset(ulong Furnaceid)
{
FurnaceData data = Interface.Oxide.DataFileSystem.ReadObject<FurnaceData>($"Furnaces/{Furnaceid}");
if (data == null) return;
data = new FurnaceData();
data.Save(Furnaceid);
FurnaceStats.Remove(Furnaceid);
}I have this and I want to have the corresponding data file deleted from the data folder. How can I do this?