16 lines
531 B
C
16 lines
531 B
C
|
|
#include "../global.h"
|
|
|
|
void import_plugin_run(char *path) {
|
|
if (!path_is_plugin(path)) {
|
|
console_error(strings_unknown_asset_format());
|
|
return;
|
|
}
|
|
|
|
char *filename = substring(path, string_last_index_of(path, PATH_SEP) + 1, string_length(path));
|
|
char *dst_path = string("%s%splugins%s%s", path_data(), PATH_SEP, PATH_SEP, filename);
|
|
file_copy(path, dst_path); // Copy to plugin folder
|
|
box_preferences_files_plugin = NULL; // Refresh file list
|
|
console_info(string("%s %s", tr("Plugin imported:"), filename));
|
|
}
|