Один экземпляр не работает в C #, программа не может получить доступ к себе - PullRequest
0 голосов
/ 24 августа 2011

Я пытаюсь заставить программу открыть файл в текущем экземпляре, а не в новом экземпляре, и вот что у меня есть, что я получил от этого вопроса .

static class Program
    {
        static EsfEditorSingleton controller;
        [STAThread]
        public static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            // Show the main form of the app.
            controller = new EsfEditorSingleton();
            string[] args = Environment.GetCommandLineArgs();
            controller.Run(args);
            controller.StartupNextInstance += controller.NextInstanceStartup;
        }

    }
    public class EsfEditorSingleton : WindowsFormsApplicationBase
    {
        internal EsfEditorSingleton() : base()
        {
            this.IsSingleInstance = true;
            this.MainForm = new EsfEditorForm();
        }
        public void NextInstanceStartup(object sender, StartupNextInstanceEventArgs e)
        {
            EsfEditorForm form = (EsfEditorForm)this.MainForm;
            string[] args = null;
            e.CommandLine.CopyTo(args, 0);
            form.mProcessArgs(args);
        }
    }

Обновление: Вот часть, которую вызывает выше.

public class EsfEditorForm : Form
{

    public EsfEditorForm()
    {
        this.InitializeComponent();
    }

    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);
        string[] args = Environment.GetCommandLineArgs();
        mProcessArgs(args);
    }

    public void mProcessArgs(string[] args)
    {
        if (args.Length > 0)
        {
            for (int i = 0; i < args.Length; i++)
            {
                if (System.IO.File.Exists(args[i])) { this.OpenFile(args[i]); }
            }
        }
    }
}

Когда я нажимаю F5 в VS 2010 Pro (FYI), он компилируется и запускается, а затем выдает мне, что IOException не было обработано, ошибка в Visual Studio:

Процесс не может получить доступ к файлу 'I: \ Program Files \ Totar \ EFS Editor \ VS - Solution \ bin \ x86 \ Release \ EsfEditor 1.4.8.exe', так как он используется другим процессом.

Я считаю, что упомянутый файл является исполняемым файлом, который запущен в данный момент.

StackTrace

at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
at System.IO.File.Open(String path, FileMode mode, FileAccess access, FileShare share)
at EsfEditor.Parser.EsfParser..ctor(String filename)
at EsfEditor.Core.EsfObjects.EsfFile..ctor(String filePath)
at EsfEditor.Forms.EsfEditorForm.OpenFile(String filePath)
at EsfEditor.Forms.EsfEditorForm.mProcessArgs(String[] args)
at EsfEditor.Forms.EsfEditorForm.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32 nCmdShow)
at System.Windows.Forms.Control.SetVisibleCore(Boolean value)
at System.Windows.Forms.Form.SetVisibleCore(Boolean value)
at System.Windows.Forms.Control.set_Visible(Boolean value)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(ApplicationContext context)
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
at EsfEditor.Program.Main()

Ответы [ 2 ]

1 голос
/ 24 августа 2011

Не следует ли пропустить первый параметр в mProcessArgs?

public void mProcessArgs(string[] args)
    {
        if (args.Length > 0)
        {
            for (int i = **1**; i < args.Length; i++)
            {
                if (System.IO.File.Exists(args[i])) { this.OpenFile(args[i]); }
            }
        }
    }
0 голосов
/ 24 августа 2011

Первый аргумент в Environment.GetCommandLineArgs () - запускаемый исполняемый файл.Вам нужно изменить метод Main, чтобы он передавал Environment.GetCommandLineArgs (). Skip (1) в метод controller.Run ()

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...