ファイルの名前を書き込むコンソールアプリケーションがあります。
Process.Start("blah.bat");
通常、Windowsアプリケーションでは、ファイル名'blah.bat'
をSettings file in Propertiesに書き込むことで、そのようなものを作成できます。
しかし、ここではSettingsファイルが見つからず、app.configを追加しました同じ目的。
ここにapp.configで何を書くべきかわからないので、Windows Forms。
例:Windowsフォーム。 Process.Start(Properties.Settings.Default.BatchFile);
ここで、BatchFile
は、プロパティの設定ファイルの文字列です。
プロジェクトでSystem.Configuration
への参照を追加してから、次のことができます。
using System.Configuration;
それから
string sValue = ConfigurationManager.AppSettings["BatchFile"];
次のようなapp.config
ファイルを使用します。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="BatchFile" value="blah.bat" />
</appSettings>
</configuration>
これを使って
System.Configuration.ConfigurationSettings.AppSettings.Get("Keyname")