HRESULT: 0x8000FFFF (E_UNEXPECTED)) エラーが発生し続けます。作成しているライブラリを Explorer に固定しようとすると発生します。
これを機能させるには、管理者になりすます必要がありますか?
コードは以下です。
string libraryName = @"libName";
string locationPath = @"C:\Users\Barry\AppData\Roaming\Microsoft\Windows\Libraries";
ShellLibrary shLib = new ShellLibrary(libraryName, locationPath, overwrite: false);
using (ShellLibrary myLib = ShellLibrary.Load(libraryName, locationPath, isReadOnly: false))
{
myLib.Add(@"C:\Users\Barry\My Library");
myLib.IsPinnedToNavigationPane = true;
}
前もって感謝します