Как извлечь текст из sticky notes, windows, c#.
Дорогие Все,
Я создаю приложение windows на c#, где автоматизирую windows.
Я пытаюсь извлечь текст из стикеров. Но это составной файл, так что, может ли кто-нибудь из плз помочь мне, как я могу читать/извлекать текст из липких заметок.
one of the manual way i found is, 1)copy the sticky file 2)extract with 7zip 3)read file 0, open with RTF.
Но, как извлечь текст в c#.
Что я уже пробовал:
public static bool EvaluateStickynotes() { bool result = false; string appDataFolder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); string[] filePaths = Directory.GetFiles(appDataFolder + "\\Microsoft\\Sticky Notes", "*.snt"); if (filePaths.Length > 0) { //extract text } return result; }
Заранее спасибо.