Microsoft DevDrive supports copy-on-write semantics which is super cool. I'd like combine ProjFS + CoW so that large binary assets can be shared.
Currently the way ProjFS works is you call PrjWriteFileData. What I'd like to do instead is perform a block clone.
Is there any way to do this today? I believe the answer is no. But I wanted to check.
In case it helps, my intended use case is an experimental version control system. I'd like to support monorepos with very large files which are deduplicated via block cloning.
Thanks!