Hello,
I've suscribed a MSDN webhosting pack at ikoula.com and i get some troubles creating directories by code. I am trying to use those C# methods:
String p = MapPath("~/Docs/Fichiers/Dossier_test");
Directory.CreateDirectory(p);
But this System.Security.SecurityException is thrown:
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
The most interesting part of the issue is that I am allowed to create and delete any file in ~/Docs/Fichiers/. I am also allowed to Delete directories but not to create them!
It seems that a permission has been forgotten by Ikoula. Am I the only one to be faced to this issue? Is there another way to create a directory?