Environment.SystemDirectory プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)
構文
解説
使用例コード例を実行しているコンピュータのシステム ディレクトリを表示するコード例を次に示します。(コード例の出力結果は、セキュリティ上の理由により、システム ディレクトリを省略して記載しています。)
' Sample for the Environment.SystemDirectory property Imports System Class Sample Public Shared Sub Main() Console.WriteLine() ' <-- Keep this information secure! --> Console.WriteLine("SystemDirectory: {0}", Environment.SystemDirectory) End Sub 'Main End Class 'Sample ' 'This example produces the following results: ' 'SystemDirectory: C:\WINNT\System32 '
// Sample for the Environment.SystemDirectory property using System; class Sample { public static void Main() { Console.WriteLine(); // <-- Keep this information secure! --> Console.WriteLine("SystemDirectory: {0}", Environment.SystemDirectory); } } /* This example produces the following results: SystemDirectory: C:\WINNT\System32 */
// Sample for the Environment::SystemDirectory property using namespace System; int main() { Console::WriteLine(); // <-- Keep this information secure! --> Console::WriteLine( "SystemDirectory: {0}", Environment::SystemDirectory ); } /* This example produces the following results: SystemDirectory: C:\WINNT\System32 */
// Sample for the Environment.SystemDirectory property import System.*; class Sample { public static void main(String[] args) { Console.WriteLine(); // <-- Keep this information secure! --> Console.WriteLine("SystemDirectory: {0}", Environment.get_SystemDirectory()); } //main } //Sample /* This example produces the following results: SystemDirectory: C:\WINDOWS\System32 */
.NET Framework のセキュリティ
プラットフォームWindows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照Weblioに収録されているすべての辞書からEnvironment.SystemDirectory プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からEnvironment.SystemDirectory プロパティ
を検索
- Environment.SystemDirectory プロパティのページへのリンク