Tagged Questions
The chdir tag has no wiki summary.
3
votes
6answers
56 views
how to find the directory already is there or not in php
i want know find the directory is already there or not...
if not i would like to create the directory...
my coding is below...
$da = getdate();
$dat = ...
3
votes
3answers
845 views
Perl directory change from Windows cmd.exe
According to the manual, chdir, Changes the working directory to EXPR, if possible.
This script, when executed from cmd.exe:
my $path = 'C:\\some\\path\\';
print "$path\n";
chdir("$path") or die ...
2
votes
1answer
348 views
2
votes
3answers
313 views
What's that best way to move through directories?
Are both of the examples below OK, or is the second one bad style?
Case 1: Stay in top directory and use catdir to access subdirectories
#!/usr/bin/env perl
use warnings; use strict;
my $dir = ...
2
votes
3answers
4k views
Why is the user.dir system property working in Java?
Almost every article I read told me that you can't have chdir in Java. The accepted answer to this question says you can't do it in Java.
However, here's some of the stuff I tried :
geo@codebox:~$ ...
1
vote
2answers
74 views
php popen and php current working directory
If I use PHP's popen command to execute a script, does is execute it in the context of PHP's current directory?
Currently I am doing something along the lines of
popen(' cd PATH; CMD');
but can I ...
1
vote
2answers
78 views
how to use chdir to change to current directory?
I'm trying to include a file from another directory and then change the chdir back to the current/original form.
chdir('/some/path');
include(./file.php);
chdir();//How to I change the directory back ...
1
vote
3answers
68 views
Perl chdir error
I am trying to change the working directory (for configure a WebShpere MQ Queue manager) using Perl in UNIX.
I have to go to the directory /var/mqm/qmgrs/Q\!MAN and I have used following code ...
1
vote
1answer
184 views
chdir in .screenrc in mac doesn't work?
I could chdir in .screenrc in linux
so that when I open up screen, I could go to specified directory(for each tab)
Haven't had success with chdir in mac with screenrc
Anyone have done this?
Thank ...
1
vote
2answers
400 views
C, Linux, getcwd/chdir(): get binary path
I want to open a number of files (log4cxx configs, other logs etc) relative to binary's location.
Unfortunately, both getwd() and getcwd() are giving me the directory, from which I try to run binary ...
1
vote
3answers
548 views
chdir() not affecting environment variable PWD
When I use chdir() to change the current working directory, why doesn't the getenv("PWD") give the present working directory? Do I need to setenv("PWD",newDir,1) also?
void intChangeDir(char *newDir)
...
1
vote
1answer
182 views
Force Delphi to open a project with chdir the project's dir
I have Delphi 6 prof, with Win7.
We have many projects. Some of them are favourites, commonly used/edited.
Formerly I used GExperts' fav. files that is shown in "Open dialog" for this.
But this is ...
1
vote
4answers
650 views
chdir programmatically
In Windows -- and probably Unix for that matter -- using the chdir() function in a (32-bit) program doesn't change the directory when the program exits. (It does in a 16-bit Windows program.)
Does ...
1
vote
3answers
926 views
Why does my chdir to a filehandle not work in Perl?
When I try a "chdir" with a filehandle as argument, "chdir" returns 0 and a pwd returns still the same directory. Should that be so?
I tried this, because in the documentation to chdir I found:
...
0
votes
1answer
26 views
Can I call chdir or setenv after fork on Mac OS X?
On OS X, the man page for fork says this:
There are limits to what you can do in the child process. To be totally safe you should restrict yourself to only executing async-signal safe operations ...
0
votes
2answers
92 views
Python: os.chdir() not working within a for loop?
I'm trying to get a homemade path navigation function working - basically I need to go through one folder, and explore every folder within it, running a function within each folder.
I reach a problem ...
0
votes
3answers
123 views
Passing a variable to chdir() in C (Linux)
I'm having a problem with chdir() in my C program - only when running on Linux (works fine on Mac). I've stripped down my code.
Something like this works fine:
chdir("/Documents");
but when I try ...
0
votes
1answer
44 views
Using chdir with an absolute path
I am trying to use chdir inside a function which writes & saves a file. If I try to write the file to a nearby folder e.g. 'bins' like so:
$location = 'bins';
chdir($location);
then it works ...
0
votes
1answer
104 views
Using chdir to change working directory in c
I'm fairly new to C,and seem to have hit a wall. Am I passing this argument to change working directory whenever someone types in cd directory correctly? If I don't include a directory, it defaults to ...
0
votes
2answers
129 views
deleting files in higher directory
im having problems deleting a file from a higher directory, i found this post and tried it but no luck....:
gotdalife at gmail dot com 25-Sep-2008
02:04
To anyone who's had a problem with ...
0
votes
4answers
356 views
Change the default path where the web server looks for images
I'm trying to change the default path or add a path that the webserver looks for images. I really would really like a solution to do this in PHP and not in htaccess.
The most basic example would be ...
0
votes
2answers
272 views
chdir doesn't work in c
I have a father process and a child process, the second created with fork, the child receive from the father a char s[] (s can be something like "cd Music" ), i extract Music from "cd Music" using ...
0
votes
2answers
169 views
How to change the working directory in C?
chdir can be used for constant character paths (it takes a const char *), but not for paths inputted by the user (since they have type char *). Is there any way around this?
0
votes
2answers
392 views
implementing cd command using chdir() in linux
I am writing my own shell program. I am currently implementing the cd command using chdir.
I want to implement the chdir with the below options :
-P Do not follow symbolic links
-L Follow symbolic ...
0
votes
3answers
213 views
Change Current Directory in Windows command environment
Seems it's not easy, I don't want to create a bat call an exe to do that.
Is there a method to create a windows exe, that can change the current directory when it exit.