CreateDirectory and Path.Combine doesn't seem to work on Windows 8 applications. How could I substitute it?
My first intention was to create a folder inside %APPDATA%, but
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
(something like that, I don't quite remember) doesn't work on Windows 8 apps. So I tried to get the documents library by using
KnownFolders.DocumentsLibrary
but I don't know how to create a folder inside it.