Получение аргументов из контекстного меню Windows - PullRequest
4 голосов
/ 12 января 2010

Я делал это раньше, но из-за жизни не могу вспомнить, как это сделать ...

В контекстном меню моего проводника я добавил новую запись (перейдите к regedit ... перейдите к HKEY_CLASSES_ROOT ... бла бла бла) ... Теперь, когда я нажимаю на свой вариант, я хочу передать путь к файлу, файл имя, такие вещи для моего приложения ... а затем использовать его там?

Ответы [ 3 ]

3 голосов
/ 12 января 2010

Значение по умолчанию .ext \ shell \ open \ command key должно содержать путь к вашему .exe с аргументом "% 1". Обозреватель заменяет его полным путем к файлу Что вы можете прочитать в вашем .exe через аргумент метода Main () или Environment.GetCommandLineArgs ().

0 голосов
/ 11 мая 2017

Попробуйте ссылки этого проекта: Как получить значение по щелчку пункта контекстного меню и передать его в качестве параметра в исполняемый файл , .NET Shell Extensions - контекстные меню оболочки

или вот этот URL: codeproject.com/Articles/3111/C-NET-Command-Line-Arguments-Parser


Пример кода:

    // Variables
    private StringDictionary Parameters;

    // Constructor
    public Arguments(string[] Args)
    {
        Parameters = new StringDictionary();
        Regex Spliter = new Regex(@"^-{1,2}|^/|=|:",
            RegexOptions.IgnoreCase|RegexOptions.Compiled);

        Regex Remover = new Regex(@"^['""]?(.*?)['""]?$",
            RegexOptions.IgnoreCase|RegexOptions.Compiled);

        string Parameter = null;
        string[] Parts;

        // Valid parameters forms:
        // {-,/,--}param{ ,=,:}((",')value(",'))
        // Examples: 
        // -param1 value1 --param2 /param3:"Test-:-work" 
        //   /param4=happy -param5 '--=nice=--'
        foreach(string Txt in Args)
        {
            // Look for new parameters (-,/ or --) and a
            // possible enclosed value (=,:)
            Parts = Spliter.Split(Txt,3);

            switch(Parts.Length){
            // Found a value (for the last parameter 
            // found (space separator))
            case 1:
                if(Parameter != null)
                {
                    if(!Parameters.ContainsKey(Parameter)) 
                    {
                        Parts[0] = 
                            Remover.Replace(Parts[0], "$1");

                        Parameters.Add(Parameter, Parts[0]);
                    }
                    Parameter=null;
                }
                // else Error: no parameter waiting for a value (skipped)
                break;

            // Found just a parameter
            case 2:
                // The last parameter is still waiting. 
                // With no value, set it to true.
                if(Parameter!=null)
                {
                    if(!Parameters.ContainsKey(Parameter)) 
                        Parameters.Add(Parameter, "true");
                }
                Parameter=Parts[1];
                break;

            // Parameter with enclosed value
            case 3:
                // The last parameter is still waiting. 
                // With no value, set it to true.
                if(Parameter != null)
                {
                    if(!Parameters.ContainsKey(Parameter)) 
                        Parameters.Add(Parameter, "true");
                }

                Parameter = Parts[1];

                // Remove possible enclosing characters (",')
                if(!Parameters.ContainsKey(Parameter))
                {
                    Parts[2] = Remover.Replace(Parts[2], "$1");
                    Parameters.Add(Parameter, Parts[2]);
                }

                Parameter=null;
                break;
            }
        }
        // In case a parameter is still waiting
        if(Parameter != null)
        {
            if(!Parameters.ContainsKey(Parameter)) 
                Parameters.Add(Parameter, "true");
        }
    }

    // Retrieve a parameter value if it exists 
    // (overriding C# indexer property)
    public string this [string Param]
    {
        get
        {
            return(Parameters[Param]);
        }
    }
}

}

0 голосов
/ 12 января 2010

Вы должны открыть окно из контекстного меню и получить там свои данные для передачи в ваше приложение.

...