Версия для печати темы
Нажмите сюда для просмотра этой темы в оригинальном формате |
Форум программистов > C/C++: Общие вопросы > Извлечь из .lnk запускаемый файл |
Автор: Garik 4.12.2002, 20:25 |
Допустим, есть какой-то ярлык, как из него извлечь запускаемый с помощью него файл и рабочую директорию? Хотелось бы чтобы это работало и для pif-файлов... |
Автор: Blade 5.12.2002, 11:19 |
Хм, а в чём, собственно говоря, проблема-то? Открой свой .lnk plain text'ом и выдери из него что нужно. Exe-шник и директроия там в конце хранятся... Или м.б. я чё не так понял... |
Автор: Vit 5.12.2002, 12:45 |
В Shell32.dll зашиты все нужные тебе функции... |
Автор: Garik 5.12.2002, 18:08 |
Blade, обычным текстовиком не хочется открывать, т.к. есть стандартные функции для этого. Vit, вот только какие ![]() |
Автор: Vit 6.12.2002, 01:04 |
The FindExecutable function retrieves the name and handle to the executable (.EXE) file associated with the specified filename. HINSTANCE FindExecutable( LPCTSTR lpFile, // pointer to string for filename LPCTSTR lpDirectory, // pointer to string for default directory LPTSTR lpResult // pointer to buffer for string for executable file on return ); Parameters lpFile Pointer to a null-terminated string specifying a filename. This can be a document or executable file. lpDirectory Pointer to a null-terminated string specifying the default directory. lpResult Pointer to a buffer to receive the filename when the function returns. This filename is a null-terminated string specifying the executable file started when an "open" association is run on the file specified in the lpFile parameter. Return Values If the function succeeds, the return value is greater than 32. If the function fails, the return value is less than or equal to 32. The following table lists the possible error values: Value Meaning 0 The system is out of memory or resources. 31 There is no association for the specified file type. ERROR_FILE_NOT_FOUND The specified file was not found. ERROR_PATH_NOT_FOUND The specified path was not found. ERROR_BAD_FORMAT The .EXE file is invalid (non-Win32 .EXE or error in .EXE image). Remarks When FindExecutable returns, the lpResult parameter may contain the path to the DDE server started if no server responds to a request to initiate a DDE conversation. See Also |
Автор: Garik 6.12.2002, 19:48 |
Спасибо большое! Буду экспериментировать. |