public static string GetCurrentPath()
{
System.Reflection.Assembly asm = System.Reflection.Assembly.GetExecutingAssembly();
string path = asm.Location.Remove(asm.Location.LastIndexOf("\\")) + "\\";
return path;
}
浙公网安备 33010602011771号