mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:02:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, 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*);
 | |
| 
 | |
| void run_file_operation(FileOperation, Vector<String> const& sources, String const& destination, GUI::Window*);
 | |
| }
 | 
