Tagged Questions
The working-directory tag has no wiki summary.
30
votes
8answers
21k views
Changing the current working directory in Java?
How can I change the current working directory from within a Java program? Everything I've been able to find about the issue claims that you simply can't do it, but I can't believe that that's really ...
11
votes
3answers
2k views
Can the working directory be set in the project (.vcproj) file?
I have a script that generates a .sln file and a few .vcproj files for visual studio 2005. I need to set the WorkingDirectory option but its specified in the .user file. A file we cannot currently ...
10
votes
2answers
2k views
python: Change the scripts working directory to the script's own directory
I run a python shell from crontab every minute:
* * * * * /home/udi/foo/bar.py
/home/udi/foo has some necessary subdirectories, like /home/udi/foo/log and /home/udi/foo/config, which ...
9
votes
2answers
4k views
how to get the current working directory's absolute path from irb
I'm running Ruby on Windows though I don't know if that should make a difference. All I want to do is get the current working directory's absolute path. Is this possible from irb? Apparently from a ...
5
votes
1answer
60 views
Can I import a patch without touching the working directory?
Normally, Mercurial will abort if I have a dirty working copy when I try to import a patch:
$ hg import x.patch
abort: outstanding uncommitted changes
Is it possible to import it anyway?
5
votes
4answers
119 views
Find Git Revision of a Working Directory Missing the .git Directory
I've got a) a working directory without the .git directory and b) a repository. a is some revision in the middle of the history of b.
How can I find out, which revision a matches in b?
I thought of ...
5
votes
3answers
392 views
Python: Is it possible to change the Windows command line shell current directory without changing the actual current directory?
I'm using os.system() to do Windows command line shell executions. I would like to change the Windows cmd current directory. Here's one way of doing it:
os.chdir('newPath')
But chdir() will also ...
4
votes
2answers
153 views
vim set working directory
When I switch buffers in Vim (using :bn and :bp), I want it to automatically set the working directory, BUT not to be the directory of the opened file. I want Vim to search recursively upwards for a ...
4
votes
7answers
4k views
How to get R to recognize your working directory as its working directory?
I use R under Windows on several machines.
I know you can set the working directory from within an R script, like this
setwd("C:/Documents and Settings/username/My Documents/x/y/z")
... but then ...
3
votes
1answer
2k views
Python: execfile from other file's working directory?
I have some code that loads a default configuration file and then allows users to supply their own Python files as additional supplemental configuration or overrides of the defaults:
# foo.py
def ...
3
votes
2answers
186 views
SVN Weirdness: Is It Possible It's Not My Fault
(I don't really care if it's my fault but rather why things are happening, of course...)
I have a rails site in SVN on a remote server. On my local copy I do a switch (svn switch ...
2
votes
2answers
200 views
How do I get the Current Working Directory for Grails/Tomcat Webapp?
I wrote a Grails webapp for Tomcat that opens and reads from a Berkeley DB on ./data/transactions/foobar.
This code runs fine in my Eclipse environmet.
But when I move it to the server, it spits out ...
2
votes
2answers
665 views
How to set working directory in a Visual Studio 2010 project?
My project is in C# Windows Forms. While debugging, I was using the debug folder as the working directory but now that I will deploy my project I need to specify a working directory. How do I do it?
2
votes
2answers
258 views
How to define working directories for DLL dependencies in Visual Studio / C#
I've got an executeable file, which I run for example from C:. The executable references some DLLs from another directory, let's say C:\MyDLLs. The problem is, that these referenced DLLs again depend ...
2
votes
2answers
111 views
howoto fix working directory is always home? (python)
This is my first question.
My python script opens and reads from a present text file using the following simple funct:
open("config.ini", "r")
As this is a relative path it is supposed to work ...
2
votes
2answers
710 views
C++ Portable way of programmatically finding the executable root directory [closed]
Possible Duplicate:
how to find the location of the executable in C
Hi,
I am looking for a portable way to find the root directory of a program (in C++). For instance, under Linux, a user ...
2
votes
2answers
754 views
Java: Howto know where the jar is located in Linux
In Linux, the JVM sets the working direcory equal to the homefolder from the user.
In Windows is this the folder where the jar is located.
How can I find where the jar (from my app) is located to ...
2
votes
6answers
823 views
What would cause the current directory of an executing app to change?
I have a C# application that includes the following code:
string file = "relativePath.txt";
//Time elapses...
string contents = File.ReadAllText(file);
This works fine, most of the time. The ...
1
vote
1answer
56 views
How to import working directory for JUnit from maven to Idea
I am trying to make new developers of my maven project to have as easy start as possible. I am using and recommending Intellij Idea as an IDE for them. I am pretty satisfied with the results of ...
1
vote
2answers
74 views
What is the default working directory for a jar launched from windows explorer?
I have created a jar file of my application so that users can run it from windows explorer. It loads a json file in its own working directory for some settings (using the path ".\config.json". ...
1
vote
2answers
69 views
CD in cmd script different from working Dir in VB.NET app
I'm launching my VB.NET application from the command line and then using the function IO.Directory.GetCurrentDirectory() in the application to get the current working directory. But the directory ...
1
vote
3answers
121 views
changing the working-directory of command from java
I need to execute a .exe file from a function in one of the packages I have in my java project. now the working directory is the root directory of the project for java but the .exe file in ...
1
vote
5answers
104 views
Opening a file with a certain program changes that programs working directory?
I have a file saved to my desktop, when I open it with my program the working directory changes to the desktop, this means my program can not load in some files it needs as it searches for these in ...
1
vote
4answers
466 views
Perl change working directory of caller
I want to write a perl script that changes its working directory to somewhere else, does something, and then leaves me in that directory after I call it from the shell. chdir only does the first ...
1
vote
2answers
460 views
Working Directory in Objective-C and Xcode: debug mode vs. executable
I am writing a program in Objective-C using Xcode. My program creates a file as follows:
[@"" writeToFile:fileName atomically:YES encoding:NSUTF8StringEncoding error:NULL];
I would like the file to ...
1
vote
3answers
782 views
subprocesses with different working directories problem with python
I am working under the following project directory.
work/project/test/a.py
then, inside a.py, I have to use the subprocess.POPEN to launch the process from another directory,
...
1
vote
2answers
357 views
How can I change the current directory in a thread-safe manner in Perl?
I'm using Thread::Pool::Simple to create a few working threads. Each working thread does some stuff, including a call to chdir followed by an execution of an external Perl script (from the jbrowse ...
1
vote
2answers
245 views
How make working directory files available to WebStart application?
We have to make a Java application demo available on Internet using JWS. It goes pretty well; all that's missing is making working directory files available for the application.
We know about the ...
1
vote
2answers
192 views
Runtime directory of Python
How do I find out the current runtime directory from within a Python script?
0
votes
2answers
33 views
Calling python from bash, how to change python working dir?
I have a bash script that goes like this :
# gets all relevant files in the directory
cp ../update_files/* ./transfer_dir
# copy the python scripts to that directory
cp ../tools/update_tool/* ...
0
votes
1answer
27 views
Working directory filesharing
This is my first post. I just take a update to write what i did
import java.io.*;
import java.rmi.*;
import javax.swing.JOptionPane;
public class FileClient{
public static void main(String a[]) {
...
0
votes
1answer
25 views
change working directory to one located on a different volume in cmd
In the command prompt I am able to change the working directory by typing CD "new path"
for example take a look on how I am able to select directories that are located in my C drive:
but note that ...
0
votes
4answers
61 views
C#.Net get workingdirectory from fileDialog
I have a filedialog in my application that gets the path of the file to execute, for example.
C:\filespool\run.exe
Now I put this in a string variable called exepath and execute it with this ...
0
votes
2answers
44 views
Save to a parallel directory in python
My file structure looks something like this:
ROOT
├── Admin
│ └── python_script.py
└── JSON
└── target_file.out
OK, my Python file is in the admin folder. I'm trying to save a file in the ...
0
votes
2answers
70 views
Locate original location of installer exe on disk from within the installer c#
I have an MSI installer with a c# custom action running at the end that executes an sql script before the installer exits. We decided the best way to do this is to stick the sql script file in the ...
0
votes
1answer
143 views
Current working directory is visual studio directory
I'm building a class library which references a file in its working directory. However, it's unable to find the file because it keeps looking in C:\Program Files\Visual Studio 2010\Common7\IDE\. The ...
0
votes
1answer
50 views
Visual Studio/Class library wrong working directory
I have a class library which searches for an XML file in the working directory of whichever application is consuming it.
It has worked as intended up until this point, when all of a sudden it's ...
0
votes
1answer
91 views
Python working directory messed up
After having this problem: look
I checked some things:
When going into my virtualenv and cd ing into my django directory, i have the right directory
~/Projects/mysite/mysite
when going into ...
0
votes
1answer
63 views
Mod Rewrite Rule is changing the CWD in PHP - Why?
I have a strange problem that I can't find documentation for. I have a page at the following location in my server.
{SITE_ROOT}/admin/myfolder/myfile.php
This file uses an include to run a global ...
0
votes
1answer
130 views
Python change the working directory for an exe opened with startfile
In python i'm using the os.startfile command to start a windows executable that does especific stuff in its own folder, the python code is running from another folder, so when I start the file, it ...
0
votes
0answers
195 views
Invalid JS/CSS resource paths when opening a JSP page through a Struts action class
This is the Struts Action class:
public ActionForward perform(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) {
ActionForward forward = null;
...
0
votes
0answers
68 views
visual editor eclipse
I am trying to edit existing JPanel class with visual editor, but when it tries to create instance of a class it throws an exception as class relies on configuration files. That configuration files ...
0
votes
1answer
162 views
Working directory - solution
How do I make the working directory the "solution directory" but not through the properties, but through the code?
I'm working in windows.
0
votes
2answers
248 views
Working directory
How do I make the working directory the "debug directory" but not through the properties, but through the code?
0
votes
3answers
429 views
Change program's working directory in compile-time in Visual C++
Is there a way to define a program's working directory to be different from its current directory at compile-time, on Visual C++? The bosses want the executable to be on the root directory but all ...
0
votes
4answers
2k views
system(“c:\\sample\\startAll.bat”) cannot run because of working directory?
I have an application and executables. I want my application to run my executables.
The executable files are in a folder, lets say in "c:\sample".
In this directory there is a batch file that calls ...
0
votes
2answers
695 views
Getting process information in .NET
Duplicate of this question.
update - This is not an exact duplicate. See my solution.
I see a java.exe process in process explorer, and double clicking it gives me its working directory & ...