launch()
Input / FilesDescription
Opens a file, URL, or application using the operating system's default handler.
Syntax
void launch(std::string path)
Parameters
| Name | Type | Description |
|---|---|---|
| path | std::string | path, URL, or application to launch |
Returns
voidUnder the Hood
From Processing.h:
inline void launch(const std::string& path) { system(path.c_str()); }