|
-
May 7th, 2024, 08:37 AM
#1
Thread Starter
Fanatic Member
Copying from locked file and using chunks with files > 2 GB
Hello!
I am looking for a way to quickly copy files with a filesize of over 2 GB which are currently locked (for example a SQLite database).
Purpose:
- Copy a sqlite db while it is in use
- Allow the copying app to still respond
- Allow copying files of over 2 GB
- Be reasonably fast
The only function which fullfills most of the demands is the following
Dim lRet As Long
lRet = CopyFileW(StrPtr(uSource), StrPtr(uDestination), True)
The problem is that it is blocking. I would have to make this call out of process which I have so far shied away from.
Is anybody aware of other options?
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|