Windows7の環境
Windows7では、.NET Famework上のアプリケーションから見た環境周りも変わっているだろうか。 今回はSystem.EnvironmentクラスとGetFolderPathメソッドについて確認した。
SpecialFolder.Desktop
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\Desktop |
| XP | C:\Documents and Settings\[ユーザ]\デスクトップ |
物理的なファイル システム上の場所ではない論理的なデスクトップ。
英字になっている。
SpecialFolder.DesktopDirectory
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\Desktop |
| XP | C:\Documents and Settings\[ユーザ]\デスクトップ |
デスクトップ上のファイル オブジェクトを物理的に格納するために使用されるディレクトリ。
こちらも英字になっている。
SpecialFolder.StartMenu
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Roaming\Microsoft\Windows\Start Menu |
| XP | C:\Documents and Settings\[ユーザ]\スタート メニュー |
[スタート] メニュー項目を格納するディレクトリ。
これもRoamingだったのですか。
SpecialFolder.Templates
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Roaming\Microsoft\Windows\Templates |
| XP | C:\Documents and Settings\[ユーザ]\Templates |
ドキュメント テンプレートの共通リポジトリとして機能するディレクトリ。
これもRoamingです。
SpecialFolder.InternetCache
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Local\Microsoft\Windows\Temporary Internet Files |
| XP | C:\Documents and Settings\[ユーザ]\Local Settings\Temporary Internet Files |
一時インターネット ファイルの共通リポジトリとして機能するディレクトリ。
これはマシン固有(Local)です。
SpecialFolder.Cookies
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Roaming\Microsoft\Windows\Cookies |
| XP | C:\Documents and Settings\[ユーザ]\Cookies |
インターネット cookies の共通リポジトリとして機能するディレクトリ。
これはRoamingです。
SpecialFolder.History
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Local\Microsoft\Windows\History |
| XP | C:\Documents and Settings\[ユーザ]\Local Settings\History |
インターネットの履歴項目の共通リポジトリとして機能するディレクトリ。
これはマシン固有(Local)です。
SpecialFolder.MyPictures
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\Pictures |
| XP | C:\Documents and Settings\[ユーザ]\My Documents\My Pictures |
マイ ピクチャ フォルダ。 説明は要らないと思います。
SpecialFolder.MyMusic
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\Music |
| XP | C:\Documents and Settings\[ユーザ]\My Documents\My Music |
マイ ミュージック フォルダ。 説明は要らないと思います。
SpecialFolder.Favorites
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\Favorites |
| XP | C:\Documents and Settings\[ユーザ]\Favorites |
ユーザーのお気に入り項目の共通リポジトリとして機能するディレクトリ。
説明は要らないですね。
SpecialFolder.Recent
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Roaming\Microsoft\Windows\Recent |
| XP | C:\Documents and Settings\[ユーザ]\Recent |
ユーザーが最近使用したドキュメントを格納するディレクトリ。
これは、Roamingです。
SpecialFolder.SendTo
| 7 | Vistaと同じ |
| Vista | C:\Users\[ユーザ]\AppData\Roaming\Microsoft\Windows\SendTo |
| XP | C:\Documents and Settings\[ユーザ]\SendTo |
[送る] メニュー項目を格納するディレクトリ。
これも、Roamingです。

Comments