Like normally, we can copy files directly to clipboard by simply
ctrl + c
But I want to do that using python
path = "..."
def copy_file_to_clipboard() -> None:
clipboard.copy_file(path) # this is a false code, but I want to know the code to do so