Hi Matthias
File system management from an OutSystems application requires very particular filesystem privileges to run properly. If the espace that's using the NetworkFile_System extension is running under the default security identify (ISUR_<MACHINENAME> in Windows 2003, ASPNET in Windows XP or ApplicationPoolIdentify type in Windows Vista, 2008 and 7), then the folder you want to change or delete must have Read, Read & Execute, Write, Modify and List Folder Contents privileges for the ASPNET account (Windows XP), or IIS_WPG local group (on Windows 2003) or IIS_IUSRS group (Windows Vista,2008 and 7).
If you have a Run As user set in the espace operation/runtime configurations, then you need to grant the user the same privileges to the folder resource described above.
If these permissions are set, then you might be getting this exception due to other reasons. Since it's clearly a file system access denied, I suggest the usage of the ProcessMon tool from Microsoft, as described on the topic How to: Identify which file is getting locked or is not accessible, to identify the process, the user and the file that's actually being accessed and generating the ACCESS DENIED result.
Hope this helps troubleshooting that exception.
Keep us posted
Cheers
Miguel Simões João
That's good to know!