Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
817 views
in Technique[技术] by (71.8m points)

asp.net - GetFolderPath(SpecialFolder.ApplicationData) returns empty string

I saw many old questions like this but it is not my case.

Asp.net application is running in AppPool (iis in win10) with 'load user profile' enabled.

And nevertheless Environment.GetFolderPath(ApplicationData or LocalApplicationData) returns an empty string. CommonApplicationData returns correct folder.

I ensure that {user}AppData is exist on disk.

So, question: how can I get not empty string for AppData?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It is not enough to enable 'loadUserProfile' option in IIS!

You have to enable another one option. This is 'setProfileEnvironment'. I didn't find IIS UI to change it.

Open file in %windir%system32inetsrvconfigapplicationHost.config and add or change attributes for your application pool.

<configuration>
    <system.applicationHost>
        <applicationPools>
            <add name="YourPool" >
                <processModel  
                 loadUserProfile="true" 
                 setProfileEnvironment="true"/>

And after that you can get ApplicationData or LocalApplicationData path!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...