Форум программистов, компьютерный форум, киберфорум
Visual Basic
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.75/4: Рейтинг темы: голосов - 4, средняя оценка - 4.75
206 / 23 / 5
Регистрация: 12.06.2012
Сообщений: 235
1

Call Shell не видит второй параметр

26.09.2018, 01:59. Показов 685. Ответов 5
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Приветствую!

Может кто сталкивался, в общем, если в command line выполнить команду:
C:\Program Files (x86)\GnuWin32\bin>gzip -d -c C:\MyDatas\data.csv.gz > c:\temp\foo.csv
, то корректно отработает и положит файл в /temp с именем foo.csv.

А вот пытаюсь из кода выполнить:
Call Shell("C:\Program Files (x86)\GnuWin32\bin\gzip.exe -d -c C:\MyDatas\data.csv.gz > C:\temp\foo.csv",1)
, то отрабатывает, как если игнорируется параметр "> C:\temp\foo.csv"
а именно, просто распаковывается файл в текущую директорию с тем же именем. Не видит путь к папке назначения.

Не подскажите, как передавать параметр правильно?
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
26.09.2018, 01:59
Ответы с готовыми решениями:

Error. number-53, File not found: vba6.dll. String shell "call.exe"
Есть вопросик. Я вставил в свою прогу этот код: Public Sub StartProgram(StringS As String) Dim...

Что означает первый параметр метода этого класса? И почему при вызове метода передаётся один параметр(второй)?
public static HelpPageApiModel GetHelpPageApiModel(this HttpConfiguration config, string...

Один комп видит второй, а второй первого нет
Есть не сложная сетб Комп A ↔ Комп Б ↔ Комп В У компа А IP 192.168.70.110 У компа Б два...

Ноутбук видит-не видит второй монитор
после установки вин 10 пару дней работал нормально. а потом началась вот такая хрень....

5
...
39 / 37 / 13
Регистрация: 08.10.2016
Сообщений: 171
26.09.2018, 22:25 2
Возможно, API Shell решит, прикинул для rar (gzip не использую), попробуйте по аналогии, если интересно:
Кликните здесь для просмотра всего текста
Visual Basic
1
2
3
4
5
6
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Const SW_SHOWNORMAL = 1
Private Sub Form_Load()
'1) Добавить все файлы *.* из текущего каталога в архив aaa.rar:
    ShellExecute Me.hwnd, vbNullString, "Rar.exe", "a aaa *.*", "C:\Program Files\WinRAR\", SW_SHOWNORMAL
End Sub

Описание функции:
Кликните здесь для просмотра всего текста
· hwnd
Specifies a parent window. This window receives any message boxes that an application produces. For example, an application may report an error by producing a message box.

· lpOperation
Pointer to a null-terminated string that specifies the operation to perform. The following operation strings are valid:
“open”
The function opens the file specified by lpFile. The file can be an executable file or a document file. The file can be a folder to open.
“print”
The function prints the file specified by lpFile. The file should be a document file. If the file is an executable file, the function opens the file, as if “open” had been specified.
“explore”
The function explores the folder specified by lpFile.

The lpOperation parameter can be NULL. In that case, the function opens the file specified by lpFile.

· lpFile
Pointer to a null-terminated string that specifies the file to open or print or the folder to open or explore. The function can open an executable file or a document file. The function can print a document file.

· lpParameters
If lpFile specifies an executable file, lpParameters is a pointer to a null-terminated string that specifies parameters to be passed to the application.
If lpFile specifies a document file, lpParameters should be NULL.

· lpDirectory
Pointer to a null-terminated string that specifies the default directory.

· nShowCmd
If lpFile specifies an executable file, nShowCmd specifies how the application is to be shown when it is opened. This parameter can be one of the following values:
SW_HIDE
Hides the window and activates another window.
SW_MAXIMIZE
Maximizes the specified window.
SW_MINIMIZE
Minimizes the specified window and activates the next top-level window in the Z order.
SW_RESTORE
Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window.
SW_SHOW
Activates the window and displays it in its current size and position.
SW_SHOWDEFAULT
Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. An application should call ShowWindow with this flag to set the initial show state of its main window.
SW_SHOWMAXIMIZED
Activates the window and displays it as a maximized window.
SW_SHOWMINIMIZED
Activates the window and displays it as a minimized window.
SW_SHOWMINNOACTIVE
Displays the window as a minimized window. The active window remains active.
SW_SHOWNA
Displays the window in its current state. The active window remains active.
SW_SHOWNOACTIVATE
Displays a window in its most recent size and position. The active window remains active.
SW_SHOWNORMAL
Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time.

If lpFile specifies a document file, nShowCmd should be zero.
1
15145 / 6418 / 1731
Регистрация: 24.09.2011
Сообщений: 9,999
26.09.2018, 23:38 3
sergeos, попробуйте
Call Shell("cmd /c ""C:\Program Files (x86)\GnuWin32\bin\gzip.exe"" -d -c C:\MyDatas\data.csv.gz > C:\temp\foo.csv",1)
2
206 / 23 / 5
Регистрация: 12.06.2012
Сообщений: 235
27.09.2018, 14:51  [ТС] 4
ji2n, спасибо, сейчас поэкспериментирую

Казанский, так работает, да, но, не правда ли что cmd /с запускает отдельный процесс, и поэтому нет ясности, закончился процесс или нет.

П.С. и ещё странно, стоит убрать ключ -c, всё идёт коту под хвост, рушится соблюдение ключей, а ведь ключ -с только лишь указывает сохранять ли файл-источник (keep file).
0
15145 / 6418 / 1731
Регистрация: 24.09.2011
Сообщений: 9,999
27.09.2018, 16:28 5
Цитата Сообщение от sergeos Посмотреть сообщение
поэтому нет ясности, закончился процесс или нет
Так Shell уже сама не дожидается завершения команды См. решения: https://yandex.ru/search/?text... sual-basic
Мне лично удобнее использовать wscript.shell, чем функции WinAPI.
1
Эксперт WindowsАвтор FAQ
17996 / 7697 / 892
Регистрация: 25.12.2011
Сообщений: 11,470
Записей в блоге: 16
29.09.2018, 19:54 6
Цитата Сообщение от sergeos Посмотреть сообщение
, то отрабатывает, как если игнорируется параметр "> C:\temp\foo.csv"
Shell просто запускает на исполнение процесс.
Знак перенаправления потока > понимает только процесс CMD при разборе аргументов.

Цитата Сообщение от sergeos Посмотреть сообщение
ещё странно, стоит убрать ключ -c, всё идёт коту под хвост, рушится соблюдение ключей, а ведь ключ -с только лишь указывает сохранять ли файл-источник (keep file).
Запустите командную строку, Win+R, cmd, OK. Введите cmd /? и там будет всё расписано, какой ключ для чего.

Цитата Сообщение от sergeos Посмотреть сообщение
не правда ли что cmd /с запускает отдельный процесс, и поэтому нет ясности, закончился процесс или нет.
Перехватить вывод консольной утилиты с ожиданием завершения процесса можно, например, так: https://www.cyberforum.ru/post9837196.html
Ну или, как Казанский говорит, можно попробовать.
1
29.09.2018, 19:54
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
29.09.2018, 19:54
Помогаю со студенческими работами здесь

Pure virtual function call (не видит переопределенный метод)
Здравствуйте. Имеется базовый класс Cars и унаследованные от него классы Jeep, Hatchback, Sedan ...

Не видит параметр
Объявила параметр ADOStoredProc1.ParamValues:=Edit1.text; CREATE PROCEDURE sp2 ( @Code int, --...

Почему-то не видит параметр
Добрый день всем! Уважаемые форумчане помогите, пожалуйста решить следующую проблему: Пытаюсь...

Регулярные выражения.Скрыть второй параметр
Здравствуйте. Подскажите как с помощью .htaccess скрыть второй параметр? Например есть путь...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
6
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru