tempfile icon indicating copy to clipboard operation
tempfile copied to clipboard

Temporary file library for rust

Results 28 tempfile issues
Sort by recently updated
recently updated
newest added

Unfortunately, this uses "raw" syscalls by default, which is too much of a breaking change for users that expect to be able to override libc (I only noticed this when...

Hi there -- I'm the primary maintainer of [camino](https://crates.io/crates/camino), a popular Rust library for UTF-8 paths. I'm wondering if you were interested in adding support for it to tempfile. This...

This library recently switched to non-CSPRNGs (see #141 and #162), which are inherently predictable based on observations of their output. Doesn't this make the library vulnerable to attacks listed [here](https://owasp.org/www-community/vulnerabilities/Insecure_Temporary_File),...

We are using tempfile crate in a Windows application that is creating temp files on network share (e.g., `\\10.2.180.35\ra2050\file`), is writing some data to the tempfile, and then is persisting...

I added some documentation to `NamedTempFile` regarding the permission it is created with on unox systems.

I have noticed that the permission of a persisted `NamedTempFile` is 600, but I was expecting it to be 644 (default permissions when creating a file). I could be mistaken,...

I'm removing duplicate dependencies from my project, and remove_dir_all 0.5 (tempfile) vs 0.6 (others) is one of them

Related issues: #30, #114 It might not be possible to support on all platforms, but it would still be nice to have it at least on unix. This issue is...

Reading the docs for the windows temp dir selection, it goes through several fallbacks before it selects a dir: https://docs.microsoft.com/en-gb/windows/win32/api/fileapi/nf-fileapi-gettemppatha Would it be possible for this crate to check that...