Giter Site home page Giter Site logo

Comments (1)

Lastique avatar Lastique commented on July 27, 2024 1

If the file is opened without the necessary sharing permission (see CreateFile documentation for dwShareMode) then MoveFileExW will fail with ERROR_SHARING_VIOLATION. I'm guessing, at least FILE_SHARE_READ | FILE_SHARE_DELETE share mode must be used on every handle for the file for MoveFileExW to succeed (FILE_SHARE_READ would be necessary if MoveFileExW falls back to CopyFile+DeleteFile implementation).

Boost.Filesystem doesn't keep file handles for files across function calls, other than directories that are used during directory iteration. Even then, the library code currently enables both FILE_SHARE_READ and FILE_SHARE_DELETE for handles it opens. So I strongly suspect that either your application opens a handle to the file without one of those sharing permissions, or there is another process in the system that does so. Note that this can truly be any process on the system, including e.g. antivirus software.

I remember there were fixes in Boost.Filesystem regarding file sharing permissions some time ago. It is likely that that was after Boost 1.73. It's difficult to tell for sure as there were too many changes since that release. I recommend you try with the latest Boost release. However, the requirement that all other handles for the file must have the necessary sharing permissions is still in effect, and there's nothing I can do to circumvent it. That's just how Windows works.

PS: The SO answer is only partially true. Sure, you can "fix" the problem by closing all other handles to the file. But the actual problem is the lack of the necessary sharing permissions on the handles. Without the permissions, the problem will still reproduce whenever the offending handle happens to exist while you're attempting to move the file.

from filesystem.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.