mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 19:17:44 +00:00
FileOperation: Add a new helper program for out-of-process file ops
This is a helper program for FileManager that performs a file operation in a separate process and reports progress on standard out. This initial implementation only supports the "Copy" operation and does not do any detailed error handling.
This commit is contained in:
parent
42abda2a19
commit
4205038c45
3 changed files with 175 additions and 0 deletions
6
Userland/Services/FileOperation/CMakeLists.txt
Normal file
6
Userland/Services/FileOperation/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(FileOperation)
|
||||
target_link_libraries(FileOperation LibCore)
|
Loading…
Add table
Add a link
Reference in a new issue