A
Andrew Ting
Hi there,
I have a web app that needs to create a folder using
Directory.CreateDirectory(path);
This works fine, but once we deployed, for some reason giving
read/write permissions to just the data folder in this example won't
work.
d:\abc\def\data\new folder
We had to give read access to all folders from the root of d:
To make things worse, the .net code seems to traverse the file system
(using a file utility from sysinternals to monitor) so it goes to
d:\
d:\abc
d:\abc\def
d:\abc\data\new folder.
Any ideas why this is?
THANKS in advance.
Regards,
Andrew
I have a web app that needs to create a folder using
Directory.CreateDirectory(path);
This works fine, but once we deployed, for some reason giving
read/write permissions to just the data folder in this example won't
work.
d:\abc\def\data\new folder
We had to give read access to all folders from the root of d:
To make things worse, the .net code seems to traverse the file system
(using a file utility from sysinternals to monitor) so it goes to
d:\
d:\abc
d:\abc\def
d:\abc\data\new folder.
Any ideas why this is?
THANKS in advance.
Regards,
Andrew