You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2 KiB
C++

When you run the program the send to folder will be opened.
/*
*
* Simple program that opens the "Send to" folder of the current user.
The
* location of this folder can be obtained from
SHGetSpecialFolderLocation().
* Then sf tries to convert the Item Identifier to a string using
* SHGetPathFromIDList() and opens the folder using ShellExecute().
*
*/
#include <windows.h>
#include <shellapi.h>
#include <shlobj.h>
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInst,
LPSTR lpCmdLine,int nCmdShow)
{
LPITEMIDLIST pidl;
LPMALLOC lpMalloc;
char sz[MAX_PATH];
char *pErrMsg = "Error opening "Send to" folder.";
char *pCaption = "Send to";
if (NOERROR == SHGetSpecialFolderLocation(
NULL,CSIDL_SENDTO,&pidl))
{
SHGetPathFromIDList(pidl,sz);
if (NOERROR == SHGetMalloc(&lpMalloc))
{
lpMalloc->lpVtbl->Free(lpMalloc,pidl);
lpMalloc->lpVtbl->Release(lpMalloc);
}
if (32 >=
(int)ShellExecute(NULL,"open",sz,NULL,NULL,SW_SHOWNORMAL))
MessageBox(NULL,pErrMsg,pCaption,MB_ICONEXCLAMATION);
}
else
MessageBox(NULL,pErrMsg,pCaption,MB_ICONEXCLAMATION);
return(0);
}