Related: #3442 and #4215
The various supported platforms have different native ways to determine the directory in which to store temporary files and directories:
$env:TEMP
$env:TMPDIR
/tmp
Currently, there is no platform-agnostic way to refer to this directory, which is cumbersome.
An automatic variable, say $TEMP
, could provide this abstraction.
PowerShell Core v6.0.0-beta.3
what about something like: (New-TemporaryFile).DirectoryName
@lukeb1961: That indeed yields the platform-specific temporary directory, but it has an unwanted side effect: New-TemporaryFile
invariably _creates_ the file whose [System.IO.FileInfo]
representation it outputs.
In other words: every time you execute (New-TemporaryFile).DirectoryName
, you leave an unused temporary file behind.
Additionally, it's a computationally expensive approach.
We've had discussed this in a nutshell. Thank you for opening the Issue.
Internally we already have "TemporaryDirectory", just "GetTemporaryDirectory()" and "CreateTemporaryDirectory()". We could make it public.
How about going with $Env:TMP on all platforms? That is not quite like Windows, Mac, or Linux. No turf war.
@Liturgist: $Env:TMP
is not an option, because it is ill-advised to either (a) have PowerShell automatically _define_ _environment_ variables or (b) pretend that non-existent environment variables exist.
An automatic _PowerShell_ variable such as $TMP
is an option, however, although the thing to keep in mind is that retroactively introducing automatic variables is technically a breaking change.
If we went the variable route, it would have to be something like $interop:TEMP to avoid name collision. A variable is probably easier to use in scripts than an API although we can certainly support both.
In https://github.com/PowerShell/PowerShell/issues/3571 I suggested other variables in addition to TEMP
@SteveL-MSFT:
Good point; an $interop:
namespace is indeed a way to avoid collisions.
If we take a step back: If we want PowerShell to become the lingua franca of the shell world, do we really want to frame things as "interop"?
How about trusting PowerShell's automatic variables to Do the Right Thing(TM) _generically_, which would call for a namespace such as $ps:
?
@mklement0 the $ps:
prefix/namespace has been proposed before. It would be nice if we had used that from the beginning :)
Personally, I prefer $ps:
for exactly your reasoning. Perhaps this can be a discussion point at the next Community Call.
cc @PowerShell/powershell-committee
I'm glad to hear it, @SteveL-MSFT.
On a related note, I think a separate namespace for all _preference_ variables would be beneficial as well, such as $pspref:
The caveat is that even though collisions are far less likely than with unqualified variable names, someone _could_ have done something like the following:
# Define custom drive 'ps:'
New-PSDrive 'ps' FileSystem '/tmp'; Get-ChildItem ps:
Why we cannot use [system.io.path]::GetTempPath()
?
https://github.com/dotnet/coreclr/blob/6ba74dc2a7194f8d6c86c3aeab572a074ef645c8/src/mscorlib/shared/System/IO/Path.Unix.cs#L153
https://github.com/dotnet/coreclr/blob/6ba74dc2a7194f8d6c86c3aeab572a074ef645c8/src/mscorlib/shared/System/IO/Path.Windows.cs#L94
@iSazonov:
That works, but it is both hard to remember and cumbersome to type.
Good to know as a workaround, though.
If we have New-TemporaryFile
users expect Get-TemporaryPath
of Get-TemporaryDirectory
.
@iSazonov:
Since the term _path_ is ambiguous (even though it is used in the .NET API to refer to a _directory_ path in this case), my preference would be Get-TemporaryDirectory
, and I certainly wouldn't mind having such a cmdlet.
That said, a cmdlet is a bit heavy-handed for something that returns a single piece of information with no variations in functionality.
Consider the existing Get-Host
/ $Host
duo: Do you ever find yourself using Get-Host
instead of $Host
?
$ps:Temp
would presumably return a static location to put temp stuff. Get-TemporaryDirectory
would presumably create a new folder under $ps:temp
. Personally, I think having a temp:
PS drive may be more useful. Perhaps cleaned up automatically on process exit.
temp:
- good idea. If we accept it we should have cmdlets for it. And I believe we can enhance *-PSDrive cmdlets.
temp:
- initialized to [io.path]::GetTempPath()
.
We would make temp:
optionally per runspaces.
I would prefer a consistent way of mapping environment variables that are basically the same just expressed differently. Are we saying we will map all path variables to drives, like Home:\?
@mklement0 - I am not quite sure why Env:TMP
is a bad idea. With regard to a) PowerShell creates Env:PSModulePath
. With regard to b) I do not know which variables PowerShell would be pretending about. I would like to understand.
@Liturgist I think the notion is that anything in the $Env:
namespace should only be actual environment variables on that platform. It also would be very confusing to have $Env:TEMP
and $Env:TMP
be defined at the same time. How do I know which one is the one to use to run on Linux, OSX, and Windows just from looking at it?
The proposals for a separate namespace or drive eliminate that issue as it allows for PowerShell to have it's own commonly defined variables that can be used cross-platform and not block access to the real environment variables.
Another idea though for a namespace could be $PSEnv:
. It has an implied meaning that anything in that namespace comes from PowerShell and not the system. Then you can cleanly map all the common environment variables and makes it easier to see what is available to use from IntelliSense.
@dragonwolf83 - Would Env:PSModulePath
be moved to PSEnv:PSModulePath
? I fully agree that that there should not be multiple variables such as Env:TEMP
and Env:TMP
. There should be one good one and let's go with that. Having PSEnv:TEMP
or PSEnv:TMP
would be fine.
To go with New-TemporaryFile
it would be helpful to have New-TemporaryDirectory
. To go with this, having a -Path
parameter on New-TemporaryFile
to specify the directory in which to create the temporary file would be helpful.
No, I don't think the PowerShell team would move $Env:PSModulePath
for three reasons.
In other words, it exists exactly where it belongs.
Take a look at the screenshot below. It shows the Environment Variables defined on my Windows system. It has TEMP and TMP as environment variables for my user Temp path. It also has PSModulePath. So all of those other variables, I would expect to see in $Env:
namespace. You can go into cmd
and see that all of those variables, including PSModulePath exist there too.
@Liturgist:
To add to @dragonwolf83's helpful comments and to respond to your comment addressed to me:
I do not know which variables PowerShell would be pretending about. I would like to understand.
My perhaps glaringly-obvious-didn't-need-to-be-said point was that in the absence of PowerShell actually _defining_ such an environment variable (which, as stated, would be ill-advised - also see below), PowerShell shouldn't _pretend that it exists_.
PowerShell respects / defines only _two_ environment variables, according to Get-Help about_Environment_Variables
:
$env:PSExecutionPolicyPreference
, when set _externally_, _before_ invoking powershell
, can be used to set the execution policy for the session (currently: Windows PowerShell only).
$env:PSModulePath
, when set _externally_, _before_ invoking powershell
, can be used to define the directories for PowerShell's module search path (the list of directories in which PowerShell looks for modules loaded by _name_ only).
If not set externally, PowerShell defines it with a list of standard directories (current-user, all-users, but _not_ system).
$PSHOME/Modules
, with the remaining standard directories getting defined at PowerShell startup, _prepended_ to the system-modules dir.It seems that defining a non-standard directory in the system-level variable causes it to be injected after the current-user value.
PowerShell Core installations on Unix platforms have no predefined variable.
If set externally at the _process_ level (with set PSModulePath=... & powershell ...
from cmd.exe
or PSModulePath=... powershell ...
from POSIX-like shells):
These variables are _environment_ variables for a good reason: they allow you to control PowerShell's startup behavior _externally_.
By contrast, there is NO good reason to define the directory for temporary files and directories as an _environment_ variable:
The value is static and can be derived (platform-specifically) from the _existing_, _standardized_ environment ($env:TMP
on Windows, $env:TMPDIR
on macOS) / platform conventions (/tmp
on Linux).
There is no good reason to expose this value to _child processes_ via the _environment_, because (a) if these child processes are not PowerShell processes, they won't know about what environment variables PowerShell defines and (b) any PowerShell session can derive the value independently.
Conversely, any environment variable that PowerShell does define bears the risk of a name collision with a variable of the same name used differently by other environments. While this problem can be mitigated with a _by-convention_ name prefix - such as PS
- the better approach is to avoid defining environment variables altogether, if they're not needed.
If a reader is familiar primarily with cmd.exe
, it is worth pointing out that cmd.exe
-
unlike PowerShell and POSIX-like shells on Unix - knows _only_ environment variables: any variable you define in cmd.exe
is _implicitly also_ an environment variable, whereas PowerShell and POSIX-like shells distinguish between session-specific-only _shell_ variables (e.g., $foo
in PowerShell) and explicitly-designated-as-such _environment_ variables (e.g., $env:foo
in PowerShell).
I definitely like the idea of _multiple_ namespaces for PowerShell's automatic variables (such as the suggested $PSPref:
for preference variables), so putting the directory for temporary files in $PSEnv:
is a good idea, though we'd have to make clear that - despite the presence of the word 'Env' - these aren't actual _environment_ variables in the established, system sense (accessible to all child processes, irrespective of what executable is being run).
Seems like there's been enough good discussion that perhaps this should be a RFC?
I definitely like the idea of multiple namespaces for PowerShell's automatic variables
In [io.path]::GetTempPath() the [io.path] is a namespace - should we introduce a Powershell "native" namespaces like $PSEnv:
?
@SteveL-MSFT:
Before we tackle an RFC, let me try to summarize what I perceive to be the use cases and perhaps get a better understanding of the scope of such an RFC:
[x] Create a temporary _file_ (in the platform-appropriate location, with a unique, randomly generated name):
New-TemporaryFile
already provides that.
[ ] Create a temporary _file_ with a _specific filename extension_ - see #4215
[ ] Create a temporary _directory_ (in the platform-appropriate location, with a unique, randomly generated name):
-Directory
switch be added to New-TemporaryFile
[ ] _Determine_ the _path_ of the platform-appropriate (root) directory for temporary files and directories.
[ ] Having the ability to implicitly create a command-scoped temporary and self-deleting file, so as to present the output of a command as a file when calling external utilities (similar to a Bash process substitution) - see #4284
[ ] Possibly provide an implicitly defined temp:
drive.
I think this would only be worthwhile if that drive were _script/function-scoped_ as opposed to session-scoped; i.e., if a script/function could write to this drive without fear of name collisions, similar to the auto-cleaning TestDrive:
drive that Pester provides.
That said, I fear that doing this would be too expensive and that the scoping is not as clear-cut as in Pester's case.
As for the introduction of PowerShell-controlled namespaces:
Note that the current namespace notation - e.g., $env:PATH
is actually based on _having an underlying PS drive_: all currently supported $<prefix>:
"prefixes" refer to _drives of the same name_; e.g., $env:HOME
is the same as (Get-Item Env:/Home).Value
.
If we now introduce namespaces such as $PSEnv:
without an underlying drive - and an underlying drive would arguably overkill - we'll be departing from that model.
I personally don't think it's a problem, but it should be a conscious, documented decision.
So what should an RFC cover?
Introduction of PowerShell-controlled namespaces?
An implicitly defined temp:
drive?
I could tackle the former, but I'm not sure I can come up with a sensible approach to the latter (and it may not be worth doing).
@mklement0 thanks for summarizing all the different related discussions. I think just scoping the Motivation
section of the RFC to the first item is sufficient. You can explicitly state that temp:
is out of scope for the RFC.
@mklement0 - Very nice and helpful summary.
I would much rather have New-TemporaryDirectory
over adding a -Directory
switch to New-TemporaryFile
. New-TemporaryDirectory
is more obvious and discoverable. If both are not possible, I vote for New-TemporaryDirectory
.
Thank you, @Liturgist.
I hear you re New-TemporaryDirectory
(though there's the proud and confusing Unix tradition of calling _any_ filesystem item a "file"....).
On the opposite end of the spectrum, you could argue (as someone already has, but I forget where) that there should be just one generic New-TemporaryItem
cmdlet with -Type File
and -Type Directory
parameters (conceivably, each drive provider could implement their own temporary locations, though among the ones that ship with PowerShell, it really only makes sense for the FileSystem
provider).
Either way, I suggest you make your voice heard at #3442.
@SteveL-MSFT: Thank you for the guidance, but despite my initial willingness to tackle this RFC, I'd like to bow out of this [self-]assignment.
I do hope someone else will take it on.
After some discussion, @PowerShell/powershell-committee is leaning towards a cmdlet rather than a new variable namespace in order to provide better discoverability, tab-completion, etc.
Right now, the .NET static method works for doing this, but we want to eventually establish a better pattern with cmdlets. I forsee that these would live in a "compatibility" module, shipping on the Gallery, that works on 3/4/5, and that might eventually ship as part of 6.x.
We may have an internal implementation of these sorts of things floating around. Let me meet with some other MSFTies and circle back. For now, though, I think this should be moved out to 6.1.0
Also, this is exactly the class of problems intended to be addressed by https://github.com/PowerShell/PowerShell-RFC/blob/master/1-Draft/RFC0019-PowerShell-Core-Interop-Module.md (written by @darwinJS). It would be awesome if more folks could provide feedback at PowerShell/PowerShell-RFC#68
@mklement0 - Thank you for your kind reply. If the cmdlet route is desired, why not add a -Temporary
switch to New-Item
? I will look for #3442.
@joeyaiello: Thanks for the pointer to the RFC and the attendant discussion.
leaning towards a cmdlet rather than a new variable namespace
I don't think the two are mutually exclusive.
To give an example it the context of this specific discussion:
It's both handy to have cmdlets that shield you from having to know a platform's location for temp. files (such as New-TemporaryFile
) _and_, on occasion, to have the ability to determine that location explicitly (e.g., $ps:TEMP
).
(Also, at least with respect to tab completion $ps:
and $pspref:
should work fine.)
@Liturgist: I like the idea. New-TemporaryFile
has always felt like a kludge to me.
P.S., as an aside: While the ability to call .NET methods directly is always a great option to have (one that sets PowerShell apart from other shells), it should only be necessary for unusual scenarios, given the different syntax, the advanced knowledge it requires and that there be dragons.
P.P.S (last one - I pinkie-swear, @joeyaiello):
I earlier said that introducing namespaces such as $ps:
and $pspref:
without an underlying _drive_ would be a departure from current namespace notation, suggesting that introducing such drives may be too heavy-handed.
On the flip side, if these new namespaces _were_ backed by a drive, it would address the discovery concerns, because you could then run commands such as Get-ChildItem ps:
and Get-ChildItem pspref:
to discover all such variables.
@mklement0 - another approach is a common prepend. I've done this to identify all variables that are part of my template code in a dump. Then you can do:
gci variable:PREPEND*
A prepend would also avoid the necessary step of discovering a third namespace for variable data (after variable: and env: ) - hopefully before you go to the work of creating your own variables.
We should probably move this conversation to the actual RFC so as not to lose these thoughts.
I'd rather $psvar
instead $pspref
.
Also it is to discover descriptions - Get-Help $psvar:pstableversion
.
List all system variables Get-Variable -ListPowerShellEngineVariables
.
With regard to temp
.
Why have we not discussed common scenarios?
What is a temp file for? What is a temp directory for?
Why does a script writer must to think about it? Can we exclude this?
If we're _explicitly_ using temporary directories we have to join/parse paths. Can we exclude this and use _implicitly_ temporary directories?
Scenario 1:
Conclusion 1: Explicit temp directory not needed. We should add an enhancement to remove our temp files.
Scenario 2:
Conclusion 2: Explicit temp directory not needed. We should add an enhancement to remove our temp directories.
Scenario 3:
Conclusion 3: Explicit temp directory _possibly_ needed. We should add an enhancement to remove our temp directories.
Common conclusion.
ps-{New-GUID}
, create temp files/directories in it and removes the directory at terminating time.Just a couple comments.
This thread has gotten far afield of the original request which is simply to have a platform agnostic method for determining the TEMP folder. Perhaps discussions about creating ephemeral temporary files and folders should be another RFC?
Second, here is the code I use for creating the TEMP variable and COMPUTERNAME variables on PowerShell Core. So far all my examples are for making the windows abstractions present on linux because I have a lot of code written for Windows.
Also, to know which variables to port across I basically try to judge what is VERY common in my scripts and exists as an entity on the linux side (e.g. hostname, temp), but is simply not exposed in the way my script expects.
In my mind the idea behind compatibility would be to facilitate adoption through [a] reuse of existing code, [b] ability to reuse familiar abstractions and [c] ability to write cross platform scripts.
I hope that [a] would not get overlooked with an overly greenfields perspective as it is this one that I've used the most.
If ((Test-Path variable:IsWindows) -AND !$IsWindows)
{
If (Test-Path '/tmp')
{
write-output 'running on PowerShell Core, setting up TEMP environment variable'
$env:temp = '/tmp'
$env:computername = hostname
$env:computername = ($env:computername).split('.')[0]
}
Else
{
Throw "Cannot find standard temp folder '/tmp' on non-windows platform."
}
}
@DarwinJS: Yes, the thrust of your RFC is quite different, so I agree that what the discussion here drifted toward (despite its initial focus being just _one_ piece of environment information) should be its own RFC.
In short:
your RFC tries to make porting existing, Windows-based scripts easier, by providing a polyfill, as an optional module.
what the discussion here has drifted toward is to make platform-abstracted information about the environment an integral part of PS Core, as a new namespace, unconstrained by the existing idioms on the supported platforms (it just occurred to me that perhaps $psenv
is preferable to $ps
).
The two approaches are not mutually exclusive.
My only concern with your specific approach is that you're creating _environment_ variables on Unix platforms, which are seen by all child processes, even though the variables are only used _PowerShell-internally_ (to restate a concern expressed in an earlier comment).
I'm not sure I understand why it matters if child processes don't recognize environment variables they don't use - it's pretty standard fare for software and scripts to define custom environment variables that child processes - including operating system binaries - will ignore.
Overall I think it will help adoption if there is NOT a new data type within PowerShell to do basic things like identify the disk temp location. "Environment Variables" and "Language Variables" seem normal and familiar to both sides of the house.
If a namespace is decided on, I would not use "psenv" If you have to turn around and unexplain the universally obvious implication of the string "env" - it seems like a learning anti-pattern. Anytime disambiguation can be incorporated at the initial naming, it saves billions of verbal and written repetitions of the following qualifier:
"Dispite the implication of the name 'psenv', it has nothing to do with your operating system environment variables."
I realize that your polyfill hinges on defining environment variables, and given that neither TEMP
nor COMPUTERNAME
are POSIX-defined environment variables, and given that we're talking about an opt-in module, that's probably fine.
More generally, the concern is not about child processes _ignoring_ environment variables, but about _naming conflicts_: different utilities using an environment variable of the same name for different purposes, unbeknownst to each other.
The namespace of environment variables is shared and not constrained in any way (except syntactically), and the only way to avoid collisions is by adopting naming _conventions_ - a prefix such as PS
being one way - but not a foolproof way.
Therefore, the more robust approach is to avoid use of environment variables altogether, if they're not strictly needed - which is the case here (each session can derive the values from the existing environment).
As for introducing what you call a new data type: Familiarity is great and helps those familiar with _one_ old way of doing things, but it's not a great foundation for a shell aspiring to be inherently multi-platform - and especially a shell whose success is owed to doing things in a new, superior way.
To write multi-platform scripts, users need _abstractions_ they can _rely on_, and, conversely, not using those abstractions will inform them that they're venturing into platform-specific territory (which may be perfectly fine, depending on the use case).
As for the namespace psenv
: To me, the prefix ps
suggests that it refers to a _PowerShell-scoped_ environment, so it _builds on_ the established meaning of env
- which will obviously continue to exist as the namespace for bona fide environment variables.
That said, names are negotiable.
Good points - I'm sure TEMP is ripe for conflict - so by being an optional "Win to Linux" compat module, script testing would hopefully reveal that.
Familiarity is not the only value is so called "old" ways - they also have the most ubiquitous implementation. And "new" ways can be over engineered - just last week I helped a colleague replace 13 lines of code they received from a large company with one line. The new code used the exceptionally over-complex and incompletely implemented "*ScheduledJob" CMDLets. If new implementations get overly focused on "design purity" they can be a step backwards. I'm not saying that is the case with proposing a new namespace - just that if "adoptability" is not forefront for a new implementation, it can end up being shelfware.
Another consideration with new name space is that if it is not back ported to PSH 5, then it will not be ubiquitous for quite some time. I'll still need to "figure out" if I can rely on the namespace for the code I write that needs to be PSH 5 / PSH 6 + multiplatform. Then I will need to custom code someting for PSH 5. Actually, Windows PSH 5 is probably the dominant use case for the foreseeable future.
But maybe this would just guide the implementation toward a module so that those that wish can run it on versions older than 6?
Our discussion splitted on three main directions:
@mklement0 Could you please open new Issue(s) (for 1. and 2. ) to summary the disscusion and close the Issue?
@iSazonov:
Re 1.: This is covered by @DarwinJS's existing RFC.
Re 2: Before we resurrect that, I suggest we get clarity on the overall approach proposed in #4394.
@DarwinJS:
Another consideration with new name space is that if it is not back ported to PSH 5, then it will not be ubiquitous for quite some time.
I hear you, but keeping track of which feature was introduced when is an unavoidable challenge if you want to innovate.
A back-ported module may indeed help, however.
I suggest we continue the conversation at #4394.
[IO.Path]::GetTempPath()
is the ONLY answer.The idea that we need to protect people from learning about .NET is, frankly, silly. That static method is backwards compatible all the way to Windows PowerShell 1.0 and no matter how many improvements we add in the future, it's still the _one_ and _only_ correct answer to the original question today (over a year after it was asked and answered).
However, I like the _idea_ that we should make this easier in the future, even though anything we come up with won't be reliably usable for years, because PowerShell Core 6 and 6.1 have already shipped without it.
Of all the ideas expressed above, the only idea I like (and I love it) is the idea of creating a Temp:
drive and pointing it at (a new folder named after a GUID and/or date in) the location returned by [IO.Path]::GetTempPath()
(and maybe cleaning it up when PowerShell exits). Creating a Temp drive is something we can easily do in both PowerShell Core and in a compatibility module for already released versions. It's very unlikely to cause a problem (it's just a question of whether anyone is likely to have created a Temp: drive) and if it does, fixing it in the script where that problem occurs would be trivial.
Obviously we could also add New-TempDirectory
to the New-TempFile
command -- but that should be done in an external module to start with so that it can be inherently cross-platform and backwards compatible.
While I like the simplicity and consistency (a lot) with [IO.Path]::GetTempPath()
, it is imperative to enable a PowerShell-Style option for PowerShell users. For this case, I dig creating a Temp:
drive with potentially related command.
As a PowerShell user, I have always appreciated in PowerShell being closer to meaningful and plain English. By NOT providing that option and implying people should learn .NET is going to erode people's trust.
Requiring an admin-scripter to use [IO.Path]::GetTempPath() is obscene. It's not discoverable, it's not obvious, and it's not powershell.
I personally believe that promoting $env:tmp is the right answer, but someone could argue it's also not powershell. After some personal consideration, I think a new cmdlet Get-TemporaryDirectory (or a similar name) is the proper answer.
I don't understand "New-TempDirectory". The normal use-case is not creating a directory (which New-* indicates) - it's retrieving the name of an existing directory (which Get-* indicates).
I'm "meh" about a temp: drive because, _for it to be discoverable_, it also requires one or more cmdlets. Instead of offering more "freedom" to the scripter, a temp: drive feels constraining.
Another look to be completely PowerShell native. Can we avoid the explicit use of temporary directories?
# Create the file in temporary directory
$temp= New-Item -Path xyz.txt -Temporary
# Get the file and copy it to temporary directory
$var2 = Get-Item -Path sample.txt; $tempVar2 = Copy-Item $var2 -Temporary
# The temporary directory is automatically created and dropped for the scope
I feel it should simply abstract away the existing platform with the longest standing powershell platform's references being preferred so that the long standing code can be more easily reused.
Like this:
If (!(test-path env:temp))
{
If (test-path env:tmpdir) {$env:TEMP = $env:tmpdir}
elseif (test-path '/var/tmp') {$env:TEMP = '/var/tmp'
}
Looking back at the subject of this thread, some may want to get what might be considered the traditional "tmp" directory. This could return [System.IO.Path]::GetTempPath(). This would obviate the need for a new namespace or provider (ps:, PSEnv:, etc.).
Get-TempDirectory
If a developer wants to use $Env:TEMP, or $Env:TMPDIR, or /tmp then they are free to do that. They would be making their code platform dependent.
Applications need mechanism to create unique directories and files in which to store things. What if we extended New-Item to be able to create one or more temporary directories and files. It would return a list of the item names. The item names returned will already be created and ready for use.
New-Item -TempDirectory -NamePrefix [string[]]
New-Item -TempFile -NamePrefix [string[]]
Just to summarize the discussion so far:
We're talking about two _complementary_ use cases here, although one is far more important:
(a) _Most importantly_ - but note that this is _not_ what this issue was originally about - we need the ability to _directly create_ temporary files and directories with paths that are guaranteed to be unique - without having to worry about the specifics - if a cmdlet creates the file/dir. for you, you needn't worry about where it is stored and what the platform's root dir. for temporary files is.
New-TemporaryFile
already does that for _files_.-NamePrefix
would be useful?Supporting both files and dirs. via New-Item
is an option (something you've previously suggested in #3442 too, @Liturgist, with the option of specifying a target dir. for the temp. item), but given that we have New-TemporaryFile
already, perhaps it's easier to simply implement New-TemporaryDirectory
for symmetry - alternatively, both could be proxy functions (similar to mkdir
on Windows) that defer to an enhanced New-Item
.
While a temp:
drive sounds tempting (no pun intended), I don't think it is feasible, because for that to be useful each scope would have to have its own drive definition based on its own, unique directory in order to be able to freely create items there without risk of name collisions, and managing that sounds like way too much overhead.
By contrast, automatic cleanup of explicitly created temporary items on exiting the scope sounds more realistic, along the lines of @iSazonov's suggestion, but there too we should consider the overall performance impact (additional checks on leaving _any_ scope).
(b) _Occasionally_ - and that is the original subject of this thread - it may be useful to _explicitly know a given platform's root directory for creating temporary files and dirs._ - e.g., to write a utility that cleans up temporary items on demand, or if you need to check if a given path refers to a temporary item.
As discussed in detail before, emulating or actively defining an environment variable on platforms where they have no predefined meaning is ill-advised, so, as familiar as $env:TEMP
is, it is not a proper cross-platform solution.
Surfacing this root directory via a Get-Temp[orary]Directory
_cmdlet_, as @Liturgist suggests, is definitely an option.
[io.path]::GetTempPath()
only supports retrieving the _user_'s temp. dir., so for the system one [environment]::GetEnvironmentVariable('TEMP', 'Machine')
would have to be used on Windows, and fixed path /tmp
on macOS. (Linux doesn't have this distinction, though Unix-like systems do have other types of temporary folders (see https://superuser.com/a/332616/139307), though we probably don't have to worry about supporting them).Another (not necessarily mutually exclusive) option is to surface this directory path via the $sf
namespace for special folders proposed in #6966, along the lines of $sf:Temporary
[System.Environment]::GetFolderPath()
- it would be an _extension_, however, given that the temporary folder(s) are currently _not_ covered there.@mklement0 Thanks for the great summarization!
I think we could continue considering scenarios in which all these options could be useful (like "get a file from web/network, put in temp, process the file (unpack/decoding...), remove the temp"). I think we can do more wonderful things than just return temp directory.
I hit this recently while playing with Azure Functions. I'm so used to having TestDrive:
in Pester that I think it would be fine to have an automounted Temp:
drive. Of course, unlike TestDrive:
PowerShell would not auto-clean up. Thoughts? Let me work on it as an Experimental Feature... https://github.com/PowerShell/PowerShell/pull/8696
Based on above discussion the simple mapping to Temp: drive looks not so useful and not resolve common scenarios. (Users can implement this with one command in profile. In Azure it is possible simply cd to temp.)
I'd prefer that PowerShell Core exposes more magic things for users.
At that level it's not especially useful, @iSazonov, but the change is helpful to future module authors, who could simply refer to Temp:
drive instead of having to code three different ways for it to cover all possible platforms.
@SteveL-MSFT - maybe this issue should be renamed and re-scoped to "implementation-agnostic" to cover things like cloud shells without implying they are a platform in the same way an OS is.
The name change helps reflect the broader value proposition when bringing serverless / non-OS implementions into scope.
Thank you for curating the issues, Michael Klement.
It seems that the tradition of a tmp/temp directory is that every program can us it in whatever way it wants. That works until name collision or there are multiple instances of the same program. In the first case, the applications must choose different names. In the second, the application may identify its files by including unique information such as its PID in the filename.
(a) I fully agree that with guaranteed uniqueness, the application should not care about where a temporary file or directory is located or the name.
A constraint should be that it is possible to locate post-mortem the temporary files and directories to enable anomaly remediation (finding and fixing bugs). Does this suggest that automatic temp cleanup should be a preference setting?
The suggestion of -NamePrefix was based on an application being able to identify its own temprrary files in a single pool. Although guaranteed uniqueness obviates this as a requirement, the developer may find comfort in recognizing foo_xxxx.tmp, bar_xxxx.tmp, bosh_xxxx.tmp, and others when mutiple temporary files are in use.
I agree that if we have New-TemporaryFile that we should have New-TemporaryDirectory.
Certainly TEMP:
doesn't solve the unique temp folder that New-TemporaryDirectory
would solve and the two are orthogonal. Uniqueness is certainly useful particularly if you have multiple processes or even runspaces, but that deviates from what this original issue intended.
What was the result of this discussion?
New-TemporaryDirectory
is https://github.com/PowerShell/PowerShell/issues/3442
A Temp:
drive resolves this issue.
@SteveL-MSFT - Ok. I do not see a Temp:
drive from Get-PSDrive
in 6.2.1. Am I looking in the wrong place, or when might the Temp:
drive become available? #3442 appears to show Waiting - DotNetCore
.
Will the Temp:
drive be global for the system in the same way a /tmp
on *NIX systems is currently?
Will there be a New-TemporaryDirectory
to be orthogonal with New-TemporaryFile
?
@Liturgist It was an experimental feature. Now it is in 7.0. You can download daily build and find it there. It is "global" in PowerShell session.
No immediate plans exist to implement New-TemporaryDirectory
- you can discuss in #3442.
@Liturgist if you want to try it on 6.2.1, just do this:
Enable-ExperimentalFeature PSTempDrive
Then restart pwsh.
:tada:This issue was addressed in #9872, which has now been successfully released as v7.0.0-preview.2
.:tada:
Handy links:
I'm trying TEMP:\
but I found that I could not use TEMP:\
directly in C# methods or external tools, e.g.
[System.IO.Compression.ZipFile]::ExtractToDirectory($path, "TEMP:\foo")
or
unzip foo -d TEMP:\foo
I must use Get-Item TEMP:\
or something to achieve this...
@LYP951018:
TEMP:
is a _PowerShell-only_ drive (you can list them with Get-PSDrive
) and such drives aren't visible to the outside world, including .NET
You must translate PS-drive-based paths to their underlying "native" filesystem paths, which is what Convert-Path
is for.
Note that there's another pitfall associated with passing filesystem paths to .NET methods (though not to external programs): .NET typically sees a different working directory than PowerShell, so that passing _relative_ paths typically doesn't work as intended - it is best to pass _full_ paths always, which Convert-Path
can also help with.
In short: it's good to form a habit of passing filesystem paths to .NET methods via
Convert-Path -LiteralPath
.
If you stay in the realm of PowerShell, you won't face that problem; for instance, you could use Expand-Archive
.
Most helpful comment
Why we cannot use
[system.io.path]::GetTempPath()
?https://github.com/dotnet/coreclr/blob/6ba74dc2a7194f8d6c86c3aeab572a074ef645c8/src/mscorlib/shared/System/IO/Path.Unix.cs#L153
https://github.com/dotnet/coreclr/blob/6ba74dc2a7194f8d6c86c3aeab572a074ef645c8/src/mscorlib/shared/System/IO/Path.Windows.cs#L94