Questions tagged [temp]

A common directory on a file system which acts as a "scratch area" that can be used to hold files and directories for short periods of time.

When a file system is executing some process, it is often desirable to record information outside of registers/RAM and save them into memory. However, if these files are not intended to be permanently stored, a temporary "temp" directory may used to facilitate the storage/disposal of these files. For example, you might have a temp directory which stores logging data, which is regularly cleaned by the OS at discrete intervals.

temp may also refer to individual files, e.g. temp_data.csv which would be a temporary data file in the CSV format.

556 questions
14
votes
3 answers

Hudson Free Temp Space location

I have just installed Hudson on a Weblogic server and I am having issues with the nodes going off line due to the Free Temp Space falling below the 1gig threshold. Now I have checked my /tmp folder (thinking Hudson uses that) but it is sitting at…
Kevin
  • 177
  • 1
  • 2
  • 6
14
votes
2 answers

Clear Temp ASP.NET files from Azure Web Site

I have a issue with a ASP.NET nopCommerece Plugin that seems to be cached on the server. I have cleared the nopCommerce cache and restated the application but it didn't help One of the normal steps is to clear out…
user2887119
  • 141
  • 1
  • 3
13
votes
1 answer

Specifically Getting the System TEMP Path in C#

I am using the System.IO.Path.GetTempPath() method to retrieve the temporary folder from environment variables. However, I am finding that this will always return the TEMP or TMP variable for the current User if it exists otherwise it will return…
Brian
  • 2,702
  • 5
  • 37
  • 71
12
votes
2 answers

ASP.NET cannnot access to windows temp folder?

whenever I want to run my application from localhost it generates the following wierd error Server Error in '/' Application. -------------------------------------------------------------------------------- Compilation Error Description: An error…
Sali Hoo
  • 743
  • 2
  • 8
  • 22
12
votes
1 answer

how get current CPU temperature programmatically in all Android Versions?

I am using this code for get current CPU Temperature : and saw it too private float getCurrentCPUTemperature() { String file = readFile("/sys/devices/virtual/thermal/thermal_zone0/temp", '\n'); if (file != null) { return…
Sana Ebadi
  • 6,656
  • 2
  • 44
  • 44
12
votes
3 answers

Batch-file get CPU temperature in °C and set as variable

How do i get a batch-file to work out the temperature of the Cpu and return it as a variable. I know it can be done as i have seen it been done. The solution can use any external tool. I have looked on Google for at least 2 hours but found nothing.…
09stephenb
  • 9,358
  • 15
  • 53
  • 91
11
votes
1 answer

How to delete a file from php://temp wrapper

In PHP, I'm using an in-memory (or rather, temp in-memory) file to load an image from an external URL into a GD resource: $file = 'php://temp/img'; copy($uri, $file); $src_img = @imagecreatefromjpeg($file); However, as I understand it, this file…
Martijn
  • 3,696
  • 2
  • 38
  • 64
11
votes
2 answers

Nunit Shadow Copy Cache Directory is Huge

I've noticed a huge amount of disk space being used recently and finally did some investigating. I found out that I have over 200 GB in the following directory: C:\Users\compUser\AppData\Local\Temp\nunit20\ShadowCopyCache Should I delete this data…
5StringRyan
  • 3,604
  • 5
  • 46
  • 69
10
votes
3 answers

Add image to .spec file in Pyinstaller

Does anybody know how to modify the .spec file created with the Makespec.py of Pyinstaller such that it includes an image data in the _MEIPASS2 Temp dir? I want to be able to add an icon to my exe. I've done what's written here, but I just don't…
maupertius
  • 1,518
  • 4
  • 17
  • 30
10
votes
4 answers

Error : Failed to create temp directory "C:\Users\user\AppData\Local\Temp\conda-\"

When I try to Activate "conda activate tensorflow_cpu" conda activate tensorflow_cpu Error : Failed to create temp directory "C:\Users\user\AppData\Local\Temp\conda-\"
Hassan
  • 123
  • 1
  • 2
  • 11
10
votes
2 answers

Changing temporary directory in R

I'm using a Windows virtual machine and I have both R and RStudio installed on it and I'm trying to change the directory where R writes the temporary files. When I start R, I try changing the temporary directory and then close R. When I restart R…
g_puffo
  • 613
  • 3
  • 11
  • 21
9
votes
7 answers

Windows temp directory details (Java)

I'm writing a program that needs a generic temp folder. I'm trying to find details about the Windows Temp folders. There are two paths that I know about - In each user directory under AppData\Local\Temp\ This may change depending Windows…
Tony R
  • 11,224
  • 23
  • 76
  • 101
9
votes
4 answers

Best practice to save temp files on tomcat?

I need to demo a xml based data interchange system. It is demoed offline on a trusted computer at school. The application will get database later but just for this presentation I only need to show the layout, opening and saving of xml-files and how…
Steve Waters
  • 3,348
  • 9
  • 54
  • 94
9
votes
4 answers

How to change to temp directory in PowerShell?

In PowerShell I can echo the value of %TEMP% using the command $Env:TEMP. Here is the output on my machine: PS> $Env:temp C:\Users\IAIN~1.COR\AppData\Local\Temp When I try to change to the directory using the cd command, I receive this error: PS>…
Iain Samuel McLean Elder
  • 19,791
  • 12
  • 64
  • 80
8
votes
2 answers

How I can instruct a Qt Creator PRO file to output the *.o files and moc_* files in separate folder?

Currently QtCreator creates .o and moc_ files in the root folder of the application. How I can instruct the project file to put them in a subfolder called "obj"?
Gad D Lord
  • 6,620
  • 12
  • 60
  • 106
1
2
3
37 38