Giter Site home page Giter Site logo

Comments (5)

Rufflewind avatar Rufflewind commented on August 15, 2024 4

I've added removePathForcibly, which can remove files or directories even if they are read-only or non-existent.

from directory.

Blaisorblade avatar Blaisorblade commented on August 15, 2024

Thanks for your investigation on the original issue (got here from stack)!

To summarize (correct me if I'm wrong): removeFile hence removeDirectoryRecursive can't remove read-only files, even when it is possible by first clearing the read-only flag. Do you propose indeed clearing the read-only flag? That would certainly be consistent with the behavior on Unix.

https://msdn.microsoft.com/ru-ru/library/windows/desktop/aa363915(v=vs.85).aspx

from directory.

wapxmas avatar wapxmas commented on August 15, 2024

Yes, I think that clearing read-only flag when it is possible it is right behavior. I think if I need to delete file or directory recursive I don`t really care read-only file or not. Thanks.

from directory.

Rufflewind avatar Rufflewind commented on August 15, 2024

That would certainly be consistent with the behavior on Unix.

*nix and Windows behave differently in that on *nix the permission to delete is determined by the write-bit on the parent directory, whereas on Windows the permission to delete is determined by the attributes of the file itself. I don't believe there's a way to make this "consistent" without doing a lot of ugly hacks.


I agree that the failure to delete read-only files is kind of annoying and probably not what the user expects.

However, I'm somewhat hesitant on changing the behavior of a core function such as removeFile. Moreover, it is currently consistent with the behavior in Python's standard library.

I could add something like removeFileForcibly though, or maybe a helper function like setWritablePermission :: Bool -> FilePath -> IO ().

from directory.

Blaisorblade avatar Blaisorblade commented on August 15, 2024

I agree a bit with your hesitation; I'd propose to add mention of this issue then for removeFile together with any addition.

Would you be open to changing removeDirectoryRecursive to use removeFileForcibly though, or adding a variant for that?
For the original linked issue on Stack, I think we would want a portable rm -rf which does remove readonly files.

I suppose that at least any build tool removing directories it created (cabal-install, Shake, ...) would need the same behavior, so I think this would be useful in a common package rather than inside Stack.

Since you mention the Python standard library, I found its shutil.rmtree function: they provide a callback for handling errors on a single deletion, which could be used to change permissions and allow to resume operations.

from directory.

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.