mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 19:22:53 +00:00
25 lines
570 B
C++
25 lines
570 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibGUI/Forward.h>
|
|
|
|
namespace FileManager {
|
|
|
|
enum class FileOperation {
|
|
Copy = 0,
|
|
Move,
|
|
Delete,
|
|
};
|
|
|
|
void delete_paths(Vector<String> const&, bool should_confirm, GUI::Window*);
|
|
|
|
ErrorOr<void> run_file_operation(FileOperation, Vector<String> const& sources, String const& destination, GUI::Window*);
|
|
}
|