I want to copy some file to a bunch of other paths, so I doing this:
File.Copy(instancePath, destPath);
but the problem is that File.Copy is just too slow (I assume it copies file entirely). Also, I don't need to change destination files, so it is read-only references, but source can be deleted at any time after copy is completed.
Is there no other way than manually copy entire content for just read operations?
PS
Files quite large (> 1gb), so copying it in 10 places just for read - too expensive.