Files Copy Event

Hi,

I have an app that logs files activities through web hooks
if I copied file from folderA to folderB it shows in the logs create and written to does that mean copy web hook is basically two web hooks, create and write ?

this is my web hook for copying

<?php
Util::connectHook(
	Filesystem::CLASSNAME,
	Filesystem::signal_post_copy,
	$fileActions,
	'copy'
	);

or I should use a different event than copy to clarify that a file was moved to a new location?

i found that signal_post_copy is triggered when copying Folder from outside of the Synced folder to it