28 references to SpecialFolder
ComSvcConfig (1)
ComplusEndpointConfigContainer.cs (1)
423
programFiles = Environment.GetFolderPath(Environment.
SpecialFolder
.ProgramFiles);
mscorlib (7)
system\environment.cs (6)
1445
public static string GetFolderPath(
SpecialFolder
folder) {
1446
if (!Enum.IsDefined(typeof(
SpecialFolder
), folder))
1456
public static string GetFolderPath(
SpecialFolder
folder, SpecialFolderOption option) {
1457
if (!Enum.IsDefined(typeof(
SpecialFolder
),folder))
1469
internal static string UnsafeGetFolderPath(
SpecialFolder
folder)
1477
private static string InternalGetFolderPath(
SpecialFolder
folder, SpecialFolderOption option, bool suppressSecurityChecks = false)
system\timezoneinfo.cs (1)
2591
string system32 = Environment.UnsafeGetFolderPath(Environment.
SpecialFolder
.System);
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
1128
Environment.GetFolderPath(Environment.
SpecialFolder
.System),
System.Configuration (2)
System\Configuration\ClientConfigPaths.cs (2)
193
string roamingFolderPath = Environment.GetFolderPath(Environment.
SpecialFolder
.ApplicationData);
199
string localFolderPath = Environment.GetFolderPath(Environment.
SpecialFolder
.LocalApplicationData);
System.IdentityModel.Selectors (3)
infocard\client\System\IdentityModel\Selectors\CardSpaceShim.cs (3)
244
Environment.GetFolderPath(Environment.
SpecialFolder
.System),
275
Environment.GetFolderPath(Environment.
SpecialFolder
.System),
296
Environment.GetFolderPath(Environment.
SpecialFolder
.System),
System.Web (1)
Util\PathUtil.cs (1)
18
return Environment.GetFolderPath(Environment.
SpecialFolder
.System);
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Application.cs (3)
251
return GetDataPath(Environment.GetFolderPath(Environment.
SpecialFolder
.CommonApplicationData));
417
return GetDataPath(Environment.GetFolderPath(Environment.
SpecialFolder
.LocalApplicationData));
709
return GetDataPath(Environment.GetFolderPath(Environment.
SpecialFolder
.ApplicationData));
winforms\Managed\System\WinForms\FolderBrowserDialog.cs (6)
36
private Environment.
SpecialFolder
rootFolder;
152
DefaultValue(System.Environment.
SpecialFolder
.Desktop),
158
public System.Environment.
SpecialFolder
RootFolder
169
if (!Enum.IsDefined(typeof(System.Environment.
SpecialFolder
), value))
171
throw new InvalidEnumArgumentException("value", (int)value, typeof(System.Environment.
SpecialFolder
));
221
rootFolder = System.Environment.
SpecialFolder
.Desktop;
winforms\Managed\System\WinForms\SpecialFolderEnumConverter.cs (2)
25
if (values[i] is System.Environment.
SpecialFolder
&&
26
values[i].Equals(System.Environment.
SpecialFolder
.Personal)) {
winforms\Managed\System\WinForms\WebBrowser.cs (1)
652
string mshtmlPath = Path.Combine(Environment.GetFolderPath(Environment.
SpecialFolder
.System), "mshtml.dll");
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Themes.cs (1)
306
path = Environment.GetFolderPath(Environment.
SpecialFolder
.ApplicationData);