tmp Questions
6
Solved
I'm using Spring Boot with embedded tomcat, everything worked fine and suddenly I got the error :
Caused by: org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to ...
Clobber asked 30/5, 2018 at 13:8
8
Solved
I'm using Visual Studio Code to write my code for Unity.
The following extension I've added to Visual Studio Code:
C#, Debugger for Unity, Unity Code Snippets & Unity Tools
Using TMPro to work...
Houstonhoustonia asked 8/4, 2020 at 13:58
4
Solved
The situation is that this application needs more space in /tmp. Currently my tmp folder is in root's partition. Is it safe to temporarily create a tmp symlink to a different partition just to take...
0
I am on Ubuntu 22.04. I am trying to create a new environment variable for R. In RStudio, I can see all the environment variables for R in RStudio terminal with the command:
printenv | grep ^R_
bu...
Heterogeneity asked 30/3, 2023 at 13:15
3
I’m running Rails 4.2.7 on Ubuntu 14.04. I have written the following method to help cache some data (preventing hits against my PostGres 9.5 database) …
class Country < ActiveRecord::Base
has...
Wherever asked 5/11, 2016 at 1:51
8
Solved
Our Mysql queries use temporary tables which creates temporary files in the process. Currently the files are written to /tmp. How exactly can the path of the temp folder to which mysql writes to be...
4
Why is that if I use NSTemporaryDirectory to save my image, the image is saved into
/var/folders/oG/oGrLHcAUEQubd3CBTs-1zU+++TI/-Tmp-/
and not into
/Users/MyMac/Library/Application Support/...
6
I want to show the user a image before the user uploads it to the server to make sure that this image is what the user wanted to upload.
I have tryed to do this with $_FILES['name']['tmp_name'] an...
2
Solved
I'm trying to invoke an external process which writes to a temporary file which I obtain with withSystemTempFile. After the process exits, I'm able to cat the content of that file, but the applicat...
4
I'm trying to write a file to my /tmp directory (on an apache server) with the php fopen function, but it fails:
<?php
$handle = fopen("/tmp/test.txt", "x");
if ($handle)
echo "Success!";
els...
Aglitter asked 25/5, 2012 at 10:3
3
Solved
I found strange behaviour concerning php and /tmp folder. Php uses another folder when it works with /tmp. Php 5.6.7, nginx, php-fpm.
I execute the same script in two ways: via browser and via sh...
1
I am trying to ru the following code (tmp lib here):
const tmp = require('tmp')
tmp.dir(async (err, path, cleanupCallback) => {
console.log(path)
}
Which outputs:
C:\Users\LONGUS~1\AppData\...
Granulocyte asked 16/6, 2019 at 15:48
1
Solved
Learning Electron I'd like to do some file processing after a drag and drop. On a Mac the equivalent for tmp is a $TMPDIR. Referencing the API documentation of app I was able to locate the app.getA...
Thisbe asked 5/3, 2019 at 14:34
2
I need to use the tmp folder on Heroku (Cedar) for writing some temporarily data, I am trying to do that this way:
open("#{Rails.root}/tmp/#{result['filename']}", 'wb') do |file|
file.write open(...
Solomon asked 8/10, 2013 at 16:17
1
Solved
I'm using R, via Rscript and H2O, but H2O is crashing. I want to review the logs, but the R tempdir that contains them seem to be removed when the R session ends (i.e. when the Rscript finishes).
...
1
Solved
I am trying to upload the audio returned by Google's Text-to-Speech API in a Firebase Function and having trouble writing the audio file to the Node.js server's temp directory. I receive the follow...
Soniferous asked 25/9, 2018 at 20:55
1
I created a nodejs application hosted on heroku which uses imagemagick. I am doing this operation:
require('child_process').exec(`convert -quiet -delay 1 output.avi ${gif}`);
This should convert...
Narvaez asked 17/1, 2018 at 19:3
1
Solved
Goal
I'm trying to write a zip file to the /tmp folder in a python aws lambda, so I can extract manipulate before zipping, and placing it in s3 bucket.
Problem
Os Errno30 Read Only FileSystem
T...
Dimpledimwit asked 21/1, 2018 at 6:25
6
Solved
I always heard that the proper way to find the temporary folder on a UNIX machine was to look at the TMP environment variable. When writing code that worked on Windows as well as Linux, I would che...
3
Solved
Does anyone know how to get the path to the tmp directory in iOS 8 with Xamarin?
Nacreous asked 30/4, 2015 at 12:33
3
Solved
I am working on an upload script.
If a user uploads a file and it already exists I want to warn the user (this is all through ajax) and give them the option to replace it, or cancel.
Instead of m...
1
I noticed that CYGWIN /tmp folder is taking too much disk space ( around 10 gb ). I have the program installed for about 2 years.
I googled for a while and I didn't found any help in cleaning this...
1
I created a pipeline that strings multiple programs together, unfortunately these programs are creating a huge amount of temporary files in the /tmp folder and when using large datasets my pipeline...
4
Solved
I am trying to create a Tempfile and write some text into it. But I get this strange behavior in console
t = Tempfile.new("test_temp") # => #<File:/tmp/test_temp20130805-28300-1u5g9...
Pack asked 5/8, 2013 at 7:43
1
Solved
I have not been able to find answer to my question anywhere so I figured I've ask.
I am using Alamofire 3.1.5 for uploading rather large volume of pictures, we are talking in hundreds of MB.
The...
Oleander asked 23/1, 2016 at 0:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.