Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
1k views

Python - How do I write a decorator that restores the cwd?

How do I write a decorator that restores the current working directory to what it was before the decorated function was called? In other words, if I use the decorator on a function that does an ...
9
votes
1answer
352 views

Is there a hook in Bash to find out when the cwd changes?

I am usually using zsh, which provides the chpwd() hook. That is: If the cwd is changed by the cd builtin, zsh automatically calls the method chpwd() if it exists. This allows to set up variables and ...
4
votes
2answers
161 views

Is it possible to exclude '.' (ie. current dir) from PHP's include path?

From perusing the comments at http://php.net/manual/en/function.set-include-path.php , it seems to me that '.', or rather basename(__FILE__), is always implicitly added to PHP's include path. Is it ...
4
votes
4answers
5k views

Bash script: set current working directory to the directory of the script

I'm writing a bash script (extremely unpleasant experience, as always) and I need the current working directory to act sanely. When I run the script from the directory in which it is in, it's fine. ...
2
votes
2answers
71 views

Using Perl on Windows, how can I ensure I get the path in the correct case following a chdir?

Consider the following code: print cwd . "\n"; $str= "../source"; # note the lower case 's' chdir($str); print cwd . "\n"; If my current directory is c:\parentdir\Source (note the capital 'S'), ...
2
votes
3answers
443 views

Python ftp list only directories and not files

I would like to list all directories on a ftp directory and then enter each of them. The problem is that my code also list file and try to enter them as well. Is there a way to get a return value ...
2
votes
1answer
499 views

CWD of an Node.js application started with upstart (Ubuntu)

I've coded an node.js app that when get executed need to return CWD from process to be able to read files on disk. When I start the app directly with node in the actual app directory... #!sh ...
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
2answers
1k views

Perl getcwd ending forward slashes

I am doing a Perl script to attach another variable to the end of the current working directory, but I am having problems with using the module. 1. If I run getcwd from D:\, the value returned is D:/ ...
1
vote
2answers
387 views

Client-Side VBScript application, Incorrect Current Working Directory

I'm not understanding this behavior. Maybe someone can explain to me why my current working directory is not what I expect. On my desktop, I have a folder called STKGui: C:\Documents and ...
0
votes
0answers
17 views

Odd difference between Python 2.5 and Python 2.6 on MacOS 10.6 using ctypes and libproc proc_pidinfo

I'm trying to determine the current working directory of a process given its PID. The command-line utility lsof does something similar. Here's the source to the python script: import ctypes from ...
0
votes
1answer
204 views

Store minecraft data in current directory

EDIT: used different decompiler now includes the Util$OS.class file I am trying to modify the mine craft launcher to check for a minecraft folder in the current working directory and if none exists ...
0
votes
3answers
158 views

Accessing files in the same directory as script

I need to access files that are relative to the location of my Ruby script. The only solution I've found is using File.dirname(__FILE__), however, if the script is run from a symlink, __FILE__ gives ...