如题。谢谢。

解决方案 »

  1.   

    打开文件? 
    引用ShellApi
    用ShellExecute
      

  2.   

    To open a folder, use either of the following calls: ShellExecute(handle, NULL, <fully_qualified_path_to_folder>, NULL, NULL, SW_SHOWNORMAL);or ShellExecute(handle, "open", <fully_qualified_path_to_folder>, NULL, NULL, SW_SHOWNORMAL);To explore a folder, use: ShellExecute(handle, "explore", <fully_qualified_path_to_folder>, NULL, NULL, SW_SHOWNORMAL);To launch the Shell's Find utility for a directory, use: ShellExecute(handle, "find", <fully_qualified_path_to_folder>, NULL, NULL
      

  3.   

    ShellAPI的
    ShellExecutehttp://lysoft.7u7.net