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
commit abc98dea09
Notes: sideshowbarker 2024-07-19 00:40:05 +09:00
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);
}