1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 03:18:11 +00:00

FileManager: Allow creating desktop shortcut from FileManager

This commit is contained in:
Alex McGrath 2020-12-22 15:57:59 +00:00 committed by Andreas Kling
parent ca2e7b6746
commit abc98dea09
3 changed files with 46 additions and 0 deletions

View file

@ -39,5 +39,6 @@ bool copy_file_or_directory(const String& src_path, const String& dst_path);
String get_duplicate_name(const String& path, int duplicate_count);
bool copy_file(const String& dst_path, const struct stat& src_stat, Core::File&);
bool copy_directory(const String& src_path, const String& dst_path, const struct stat& src_stat);
bool link_file(const String& src_path, const String& dst_path);
}