Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
62 views

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 = ...
5
votes
2answers
337 views

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"?
5
votes
6answers
11k views

MySQL - Select from a list of numbers those without a counterpart in the id field of a table

I have a list of numbers, say {2,4,5,6,7} I have a table, foos, with foos.ID, including say, {1,2,3,4,8,9} Id like to take my list of numbers, and find those without a counterpart in the ID field of ...
4
votes
2answers
695 views

Java temp files and automated deletion

It is safe to use java's createTempFile method to create a temp file and then rename it and keep it as a permanent file? Or does java or the system in some way keep track of its temporary files and ...
3
votes
1answer
190 views

Path.GetTempFileName() - can I change this to use a shared drive?

Using VS2008, c#. When I call Path.GetTempFileName(), the temp file generated is something like: C:\Users\allensamuel\AppData\Local\Temp\tmpC1D0.tmp However, in the company I work, using the C: ...
2
votes
1answer
34 views

Clarifications on Tomcat's “temp” and “work” directories

I have been using Tomcat for quite a while now but I am not sure what the "temp" and "work" directories are used for and when I need to clean which. Can anyone please advise?
2
votes
1answer
83 views

Where to put application data and temp files on Windows, Linux and MAC if java-application is being lauched using JWS

Can we allow user to set and save application data and temp data using Java-Application that has beenrun/launch using JWS ? Does it make sense ? We would like to know if user run JNLP directly then ...
2
votes
4answers
82 views

php memory limit and reading/writing temp files

using the function below I am pulling rows from tables, encoding them, then putting them in csv format. I am wondering if there is an easier way to prevent high memory usage. I don't want to have to ...
2
votes
1answer
100 views

php - session temp folder

Idea is this: User uploads a file(s) in some "temp" folder that exist only for current session. User registers Files form "temp" folder are moved to permanent folder aka storage. I can do ...
2
votes
3answers
63 views

What is the recommended way to copy a file to a tmp folder?

I need to copy a file to a tmp location in order to manipulate it. I need to ensure that I always can copy the file. Is the followign code correct? Does it ensure that never try to copy to a ...
2
votes
1answer
183 views

Get TEMP folder

How do I get the path to the Temp folder from inside an InnoSetup Pascal script? Not the folder that the setup uses as it its temporary folder (which can accessed using {tmp}), but the actual user's ...
2
votes
1answer
324 views

Why does typing %temp% take me to ..AppData\Local\Temp\1 intead of ..AppData\Local\Temp?

I have a Windows Server 2008 32 bit and when I'm typing %temp% it takes me to ..AppData\Local\Temp\1\ or ..AppData\Local\Temp\2 instead of ..AppData\Local\Temp I've already checked the Environment ...
2
votes
3answers
87 views

Is it possible to add index to a temp table? And what's the difference between create #t and declare @t

I need to do a very complex query. At one point, this query must have a join to a view that cannot be indexed unfortunately. This view is also a complex view joining big tables. View's output can ...
2
votes
2answers
261 views

.NET Change Temp Path

How to set temp path for this two methods? System.IO.Path.GetTempFileName() System.IO.Path.GetTempPath() My company application was designed for Windows 2008 with .NET 4.0. However the application ...
2
votes
2answers
677 views

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 ...
2
votes
3answers
2k views

How is the Tomcat temp directory location defined?

I am running Tomcat bundled with Liferay5.2.3 and use Eclipse 3.5 (Galileo) as my IDE. I set up my Tomcat server in Eclipse as per this blog entry: ...
1
vote
3answers
22 views

Create a non-database linked form field in ruby on rails

I am attempting to do some calculations on a simple ruby screen. Lets say for fun, i want to create a form that lets the user convert meters to feet. Of course I don't want to store the values in a ...
1
vote
0answers
18 views

How to load Hadoop Pig temporary output from job that stopped due to network drop?

I had a Pig job running, but forgot to screen the command, and when the bulk of the job finished (4 hours of mapping), the reduce phase never started, probably because Pig was no longer running. I ...
1
vote
1answer
32 views

App crashes when loading multiple png images

I have a few layouts. Each one has a PNG image fullscreen. Any one activity open fine. But to open the other one I have to re-start the app. App FORCE CLOSES when opening the other activity by going ...
1
vote
7answers
89 views

C Pointer and temp variable

int main() { int i=0; int* p_numbers = ((int*) malloc (5*sizeof(int))); int* temp; temp = p_numbers; for(i=0;i<5;i++) { *temp=i; ...
1
vote
1answer
74 views

Mysql ranking entries and group by

I have a website where people are saving highscores in games. I've been trying to assign a rank to a player's highscore by finding the number of other highscores that are higher. So if the query finds ...
1
vote
5answers
212 views

Reverse String in Java without using any Temporary String,Char or String Builder

Is it possible to reverse String in Java without using any of the temporary variables like String, Char[] or StringBuilder? Only can use int, or int[].
1
vote
1answer
230 views

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: ...
1
vote
0answers
107 views

Super Annoying SQL Server Temp .sql files Error — Tried to keep naming them the same

I feel like I may be the only person in the world experiencing this problem since I can't locate even anything on google with a solution this problem. Whenever I open a new query window in SSMS, ...
1
vote
1answer
766 views

ASP.NET cann not 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 occurred during the compilation ...
1
vote
2answers
409 views

Reverse a binary std::string

Im trying to figure out how to reverse the string temp when I have the string read in binary numbers please help istream& operator >>(istream& dat1d, binary& b1) { string ...
1
vote
2answers
1k views

php:: how long to tmp files stay?

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 ...
1
vote
2answers
390 views

Sybase stored procs which use temp tables. Creation issue

I am trying to create a sybase stored procedure which references a temp table, but I do not know the definition of this temp table. I could look at the proc and figure out what the temp table looks ...
1
vote
1answer
187 views

cleaner way to unlink a File::Temp file?

I'm currently doing this my $tmpf = File::Temp->new; $tmpf->unlink_on_destroy(1); but it seems like this could be cleaner.. something like my $tmpf = File::Temp->new({unlink => 1}); ...
1
vote
1answer
156 views

How can I temporarily change the tmp directory Perl uses?

Some libraries I use seem to write stuff to /tmp. I would like to change the 'temporary' directory location my script (and all the imported libraries) uses to /new/tmp/location. Needless to say, I ...
1
vote
4answers
1k views

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 ...
1
vote
4answers
157 views

How to know the next temp file to be created in windows?

I am by no means a programmer but currently am wondering if an application creates a temp file that windows names. For example the file it creates is tmp001, is there a way i can take that name ...
1
vote
3answers
667 views

How to store temporary data from one request to the other in MVC

In some requests, external data has to be fetched from Soap service. Obviously I don't want to get that data at each call for the same user. What is the best practice to store temporary data from one ...
1
vote
3answers
2k views

What's the difference between %TMP% and %TEMP% in Vista environment variables?

On my computer, both points to the same location. Are those for backward compatibility issues only, or is there a real difference?
0
votes
1answer
29 views

want to create a temp DB for my app in android

I have a database for my application which will be installed/created during the first run of the application. This Database is located in its default place i.e. /data/data//databases Now I want to ...
0
votes
1answer
43 views

Ghostscript convert pdf to jpg, save file or temp file?

I've a website with many pdf files and i'm using ghostscript to convert PDF to JPG on the fly (while opening the pdf I convert the PDF to JPG and the visitor see the JPG version of the PDF). Now I ...
0
votes
1answer
38 views

Save file in %temp% folder?

I want to save file in temporary folder which can be easy found when type at run by putting "%temp%", but don't know how to navigate to them from c++. I try using function like "GetTempPathA" or ...
0
votes
2answers
27 views

Is it possible to use git to apply temporary changes for testing purposes

I have a bunch of changes to the code in one of my branches. All of these changes have to do with a carefully set-up testing state. Now I want to remove all of these changes because I'm working on ...
0
votes
4answers
42 views

Change where php downloads files to

I'm trying to make an upload module on my website, but I'm getting the following error: PHP Warning: Unknown: open_basedir restriction in effect. File(C:\Windows\TEMP) is not within the allowed ...
0
votes
0answers
27 views

Java - Zip entry write skip not working

I've been working on my application and figured out that if I out the mod files in first then the minecraft files it will work but on problem, we I try excluding the META-INF it fails, it just puts ...
0
votes
0answers
20 views

Encrypt Tomcat temp directory

Is it be possible to encrypt the temp folder of Tomcat 6.0 running on Linux?
0
votes
2answers
107 views

Python tool to generate a unique temporary filename

I find when scripting I often need to do os.mkfifo('/tmp/some_fifo_name') and then later on do os.remove('/tmp/some_fifo_name'). Is there a way to autogenerate a temporary filename which is ...
0
votes
2answers
76 views

Dreamweaver creating temp php files instead of working direct from the local test server files

Trying to get MAMP running with Dreamweaver. When I preview a php file inside Dreamweavers 'Live View' mode instead of working direct from my file: http://localhost/php_test/timetest.php it ...
0
votes
2answers
31 views

temporary variables

I would like to know what's the difference when I write a temporary variable like this (these are just examples): version1 for each tempEnemy in enemyManager.enemies { var tempX:int = tempEnemy.x; } ...
0
votes
0answers
33 views

Is it possible to create a temp index in sqlite?

A program I'm working on can import data from another program (not ours) that uses sqlite files. I need indices that don't already exist in the sqlite files, but I don't want to have to modify ...
0
votes
0answers
13 views

Some functionality of my application works fine after deleting the temp files from %temp% folder. Why?

In my application (Asp.net webapplication, .net2.0) on click of a certain button, the application is required to perform certain functionality. (for some number of rows in database, copy the values ...
0
votes
0answers
35 views

Android: Getting a Uri from selecting a picture

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); intent.putExtra("crop", "true"); intent.putExtra("aspectX", ...
0
votes
1answer
112 views

SQLITE: PRAGMA temp_store = MEMORY

In all optimization guides people talk about pragma's like JOURNAL_MODE or SYNCHRONOUS, but I never read anything about the TEMP_STORE pragma? I would expect it has a large impact, so why is it never ...
0
votes
1answer
150 views

How to fix madExcept creating temporal files in User\LocalSettings\Temp

I sterated using "Standard User Analyzer" from Application Compatibility toolkit and it reported that my app is not UAC compatible because: "DeleteFileA: File (\Device\HarddiskVolume1\Documents and ...
0
votes
3answers
218 views

search & delete temp files/folder (script's got a failure)

I use this script to clean history, coockies and cache(Temporary Internet Files) for all users AND it should also clean de temp dir BUT there seems to be something wrong. 2 things get mixed up I ...

1 2