We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running this on Windows:
{ let file = AtomicFile::new_with_tmpdir(&path, AllowOverwrite, &temporary_directory); file.write(|f| f.write_all(bytes1))?; } { let file = AtomicFile::new_with_tmpdir(&path, AllowOverwrite, &temporary_directory); file.write(|f| f.write_all(bytes2))?; }
Sometimes gives:
WriteError(Internal(Os { code: 5, kind: PermissionDenied, message: "Access is denied." }))
Error seen on both Windows 7 and Windows 10.
The text was updated successfully, but these errors were encountered:
I'm also seeing this on the windows-2019 GitHub Actions machines.
windows-2019
My test cases create a temporary directory, and atomic writes inside the directory fail with the same error that @ChrisGreenaway describes.
Sorry, something went wrong.
No branches or pull requests
Running this on Windows:
Sometimes gives:
Error seen on both Windows 7 and Windows 10.
The text was updated successfully, but these errors were encountered: