| 2366 | case AwaitFileSystemOperationType::CopyFile: |
| 2367 | operationResult = request.copyFile(await.asyncEventLoop(), path, otherPath, copyFlags); |
| 2368 | return operationResult; |
| 2369 | case AwaitFileSystemOperationType::CopyDirectory: |
| 2370 | operationResult = request.copyDirectory(await.asyncEventLoop(), path, otherPath, copyFlags); |
| 2371 | return operationResult; |
| 2372 | case AwaitFileSystemOperationType::Rename: |
| 2373 | operationResult = request.rename(await.asyncEventLoop(), path, otherPath); |
| 2374 | return operationResult; |
nothing calls this directly
no outgoing calls
no test coverage detected