Yes the I tried 9 also, The documentation says it is number 8.
I have added the following
$file1 = "C:\Users\Home\Desktop\Documents\test.txt"
Local $Savetext = FileOpen($file1, 8)
; Prove it exists
If FileExists($Savetext) Then
MsgBox($MB_SYSTEMMODAL, "File", "Exists")
Else
MsgBox($MB_SYSTEMMODAL, "File", "Does not exist")
EndIf
FileWrite($Savetext, ClipGet() & @CRLF)
FileClose($Savetext)
MsgBox says the file does not exist.
Both. I can't create the file and if I create the file manually and then attempt to amend/write over it with the clipboards contents then does it not work.