コンソールアプリケーションでアプリケーションのパスを見つけるにはどうすればよいですか?
でWindowsフォーム、私は使用することができApplication.StartupPath
、電流経路を見つけることが、これはコンソールアプリケーションで利用可能ではないようです。
コンソールアプリケーションでアプリケーションのパスを見つけるにはどうすればよいですか?
でWindowsフォーム、私は使用することができApplication.StartupPath
、電流経路を見つけることが、これはコンソールアプリケーションで利用可能ではないようです。
回答:
System.Reflection.Assembly.GetExecutingAssembly()
。1Location
System.IO.Path.GetDirectoryName
必要なのがディレクトリだけの場合は、それを組み合わせます。
1 Mindor氏のコメントに従って:
System.Reflection.Assembly.GetExecutingAssembly().Location
実行中のアセンブリが現在配置されている場所を返します。これは、実行されていないときにアセンブリが配置されている場所である場合とそうでない場合があります。シャドウコピーアセンブリの場合、一時ディレクトリにパスを取得します。System.Reflection.Assembly.GetExecutingAssembly().CodeBase
アセンブリの「永続的な」パスを返します。
GetExecutingAssembly
現在実行中のコードを含むアセンブリを返します。これは、必ずしもコンソールの.exeアセンブリであるとは限りません。まったく異なる場所からロードされたアセンブリである可能性があります。あなたが使用する必要がありますGetEntryAssembly
!またCodeBase
、アセンブリがGACにある場合は設定されない場合があることに注意してください。より良い代替案はAppDomain.CurrentDomain.BaseDirectory
です。
次のコードを使用して、現在のアプリケーションディレクトリを取得できます。
AppDomain.CurrentDomain.BaseDirectory
BaseDirectory
実行時に設定できると思いますか?ゲッターしかありません。
アプリケーションのディレクトリを見つけるには、目的に応じて2つのオプションがあります。
// to get the location the assembly is executing from
//(not necessarily where the it normally resides on disk)
// in the case of the using shadow copies, for instance in NUnit tests,
// this will be in a temp directory.
string path = System.Reflection.Assembly.GetExecutingAssembly().Location;
//To get the location the assembly normally resides on disk or the install directory
string path = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
//once you have the path you get the directory with:
var directory = System.IO.Path.GetDirectoryName(path);
var localDirectory = new Uri(directory).LocalPath;
おそらく少し遅れますが、これは言及する価値があります:
Environment.GetCommandLineArgs()[0];
または、ディレクトリパスのみを取得するためのより正確な例:
System.IO.Path.GetDirectoryName(Environment.GetCommandLineArgs()[0]);
編集:
かなりの数の人がGetCommandLineArgs
プログラム名を返すことが保証されていないことを指摘しました。コマンドラインの最初の単語は、慣例によるプログラム名のみを参照してください。この記事には、「この癖を使うWindowsプログラムはごくわずかですが(私は自分自身については知りません)」と述べています。したがって、「なりすまし」が可能ですが、ここではGetCommandLineArgs
コンソールアプリケーションについて説明します。通常、コンソールアプリは高速でダーティです。これは私のKISSの哲学と一致します。
asp.net Webアプリに興味のある人向け。ここに3つの異なる方法の私の結果があります
protected void Application_Start(object sender, EventArgs e)
{
string p1 = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
string p2 = System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath;
string p3 = this.Server.MapPath("");
Console.WriteLine("p1 = " + p1);
Console.WriteLine("p2 = " + p2);
Console.WriteLine("p3 = " + p3);
}
結果
p1 = C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\a897dd66\ec73ff95\assembly\dl3\ff65202d\29daade3_5e84cc01
p2 = C:\inetpub\SBSPortal_staging\
p3 = C:\inetpub\SBSPortal_staging
アプリは「C:\ inetpub \ SBSPortal_staging」から物理的に実行されているため、最初のソリューションはWebアプリには明らかに適切ではありません。
上記の答えは必要なものの90%でしたが、通常のパスではなくUriを返しました。
MSDNフォーラムの投稿で説明されているように、URIパスを通常のファイルパスに変換する方法 、私は以下を使用しました:
// Get normal filepath of this assembly's permanent directory
var path = new Uri(
System.IO.Path.GetDirectoryName(
System.Reflection.Assembly.GetExecutingAssembly().CodeBase)
).LocalPath;
File.CreateDirectory(path)
、のようなことをしようとする場合を除き、URIパスを許可しないという例外が発生します...
#
文字)を含むパスでは機能しません。識別子とそれに続くすべてのものは、結果のパスから切り捨てられます。
new Uri
とSystem.IO.Path.GetDirectoryName
?これにより、の代わりに通常のパス文字列が得られますUri
。
代わりにこれを使用できます。
System.Environment.CurrentDirectory
.NET Core互換の方法を探している場合は、
System.AppContext.BaseDirectory
これは、.NET Framework 4.6および.NET Core 1.0(および.NET Standard 1.3)で導入されました。参照:AppContext.BaseDirectoryプロパティ。
このページによると、
これは、.NET CoreのAppDomain.CurrentDomain.BaseDirectoryの推奨される代替です。
Process.GetCurrentProcess().MainModule.FileName
コンソールアプリケーションの場合、これを試すことができます。
System.IO.Directory.GetCurrentDirectory();
出力(ローカルマシン上):
c:\ users \ xxxxxxx \ documents \ visual studio 2012 \ Projects \ ImageHandler \ GetDir \ bin \ Debug
または、試すことができます(最後に追加のバックスラッシュがあります):
AppDomain.CurrentDomain.BaseDirectory
出力:
c:\ users \ xxxxxxx \ documents \ visual studio 2012 \ Projects \ ImageHandler \ GetDir \ bin \ Debug \
BaseDirectory
実行時に設定できます。正確であるとは
私はこのコードを使用して解決策を得ました。
AppDomain.CurrentDomain.BaseDirectory
プロジェクト参照に追加して 、通常どおりをSystem.Windows.Forms
使用できますSystem.Windows.Forms.Application.StartupPath
。
したがって、より複雑な方法や反射を使用する必要はありません。
次の行は、アプリケーションパスを示します。
var applicationPath = Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName)
上記のソリューションは、以下の状況で適切に機能しています。
mkbundle
バンドルあり(他の方法は機能しません)exeをダブルクリックして呼び出すことになっている場合は、これを使用します
var thisPath = System.IO.Directory.GetCurrentDirectory();
利用した
System.AppDomain.CurrentDomain.BaseDirectory
アプリケーションフォルダからの相対パスを検索する場合。これはASP.Netとwinformアプリケーションの両方で機能します。また、System.Webアセンブリへの参照も必要ありません。
つまり、ap / invokeメソッドを使用しないのはなぜですか?
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
public class AppInfo
{
[DllImport("kernel32.dll", CharSet = CharSet.Auto, ExactSpelling = false)]
private static extern int GetModuleFileName(HandleRef hModule, StringBuilder buffer, int length);
private static HandleRef NullHandleRef = new HandleRef(null, IntPtr.Zero);
public static string StartupPath
{
get
{
StringBuilder stringBuilder = new StringBuilder(260);
GetModuleFileName(NullHandleRef, stringBuilder, stringBuilder.Capacity);
return Path.GetDirectoryName(stringBuilder.ToString());
}
}
}
Application.StartupPathと同じように使用します。
Console.WriteLine("The path to this executable is: " + AppInfo.StartupPath + "\\" + System.Diagnostics.Process.GetCurrentProcess().ProcessName + ".exe");
Assembly.GetEntryAssembly().Location
または Assembly.GetExecutingAssembly().Location
と組み合わせて使用してSystem.IO.Path.GetDirectoryName()
、ディレクトリのみを取得します。
以下からのパスGetEntryAssembly()
とは、GetExecutingAssembly()
ほとんどの場合、ディレクトリは同じになりますにもかかわらず、異なる場合があります。
ではGetEntryAssembly()
、あなたはこれを返すことができることを認識する必要がありnull
、エントリモジュールが管理対象外である場合(つまり、C ++またはVB6の実行可能ファイル)。これらの場合GetModuleFileName
、Win32 APIから使用できます。
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
public static extern int GetModuleFileName(HandleRef hModule, StringBuilder buffer, int length);
これらのメソッドはいずれも、exeへのシンボリックリンクを使用するなどの特殊なケースでは機能せず、実際のexeではなくリンクの場所を返します。
したがって、QueryFullProcessImageNameを使用してそれを回避できます。
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Diagnostics;
internal static class NativeMethods
{
[DllImport("kernel32.dll", SetLastError = true)]
internal static extern bool QueryFullProcessImageName([In]IntPtr hProcess, [In]int dwFlags, [Out]StringBuilder lpExeName, ref int lpdwSize);
[DllImport("kernel32.dll", SetLastError = true)]
internal static extern IntPtr OpenProcess(
UInt32 dwDesiredAccess,
[MarshalAs(UnmanagedType.Bool)]
Boolean bInheritHandle,
Int32 dwProcessId
);
}
public static class utils
{
private const UInt32 PROCESS_QUERY_INFORMATION = 0x400;
private const UInt32 PROCESS_VM_READ = 0x010;
public static string getfolder()
{
Int32 pid = Process.GetCurrentProcess().Id;
int capacity = 2000;
StringBuilder sb = new StringBuilder(capacity);
IntPtr proc;
if ((proc = NativeMethods.OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, false, pid)) == IntPtr.Zero)
return "";
NativeMethods.QueryFullProcessImageName(proc, 0, sb, ref capacity);
string fullPath = sb.ToString(0, capacity);
return Path.GetDirectoryName(fullPath) + @"\";
}
}
.Net Coreリフレクションによって提供されるLocalPathを使用可能なSystem.IOパスに変換する人を見かけなかったので、これが私のバージョンです。
public static string GetApplicationRoot()
{
var exePath = new Uri(System.Reflection.
Assembly.GetExecutingAssembly().CodeBase).LocalPath;
return new FileInfo(exePath).DirectoryName;
}
これにより、コードの場所への完全な「C:\ xxx \ xxx」形式のパスが返されます。
実行可能パスを取得する方法はたくさんありますが、必要に応じて使用する方法は、さまざまな方法を説明するリンクです。
32ビットと64 ビットで動作する信頼できるソリューションは次のとおりですアプリケーションです。
これらの参照を追加します。
System.Diagnosticsを使用します。
System.Managementを使用します。
このメソッドをプロジェクトに追加します。
public static string GetProcessPath(int processId)
{
string MethodResult = "";
try
{
string Query = "SELECT ExecutablePath FROM Win32_Process WHERE ProcessId = " + processId;
using (ManagementObjectSearcher mos = new ManagementObjectSearcher(Query))
{
using (ManagementObjectCollection moc = mos.Get())
{
string ExecutablePath = (from mo in moc.Cast<ManagementObject>() select mo["ExecutablePath"]).First().ToString();
MethodResult = ExecutablePath;
}
}
}
catch //(Exception ex)
{
//ex.HandleException();
}
return MethodResult;
}
次のように使用します。
int RootProcessId = Process.GetCurrentProcess().Id;
GetProcessPath(RootProcessId);
プロセスのIDがわかっている場合、このメソッドは対応するExecutePathを返すことに注意してください。
興味のある方のために:
Process.GetProcesses()
...現在実行中のすべてのプロセスの配列が表示されます...
Process.GetCurrentProcess()
...現在のプロセスとそれらの情報(IDなど)や制限された制御(Killなど)を提供します*
ソリューションエクスプローラーを使用して、プロジェクト内にリソースとしてフォルダー名を作成し、リソース内にファイルを貼り付けることができます。
private void Form1_Load(object sender, EventArgs e) {
string appName = Environment.CurrentDirectory;
int l = appName.Length;
int h = appName.LastIndexOf("bin");
string ll = appName.Remove(h);
string g = ll + "Resources\\sample.txt";
System.Diagnostics.Process.Start(g);
}