1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 21:00:25 +00:00

Merge branch 'QB64-Phoenix-Edition:main' into main

This commit is contained in:
Samuel Gomes 2023-09-04 03:10:25 +05:30 committed by GitHub
commit 36fa63c60a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,7 @@ FUNCTION CopyFile& (sourceFile$, destFile$)
fileLength = LOF(sourceFileNo)
destFileNo = FREEFILE
OPEN destFile$ FOR OUTPUT AS #destFileNo: CLOSE #destFileNo 'create and blank any existing file with the dest name.
OPEN destFile$ FOR BINARY AS #destFileNo
IF E = 1 THEN GOTO errorCleanup