Cool Web Design CWD is global benchmark and source of design inspiration for web designers
0
votes
1answer
64 views
Distinction Between CWD and Import Search Path in Python?
I am a little confused about the distinction between CWD and and import path in Python.
From what I understand:
C:\temp> python C:\...\PyTools\ex.py
The script file is in C:...\PP4E\Tools\ , ...
0
votes
2answers
105 views
CWD unicode support
Is the CWD module regarding Unicode not up to date or is abs_path supposed only to be used when writing to the OS?
#!/usr/bin/env perl
use warnings;
use 5.012;
use utf8;
binmode STDOUT, ...
0
votes
1answer
129 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 ...
4
votes
2answers
555 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'), ...
0
votes
2answers
825 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 ...
2
votes
4answers
2k 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
3answers
1k views
C++ Get Application Directory *NIX
How can I get the application directory in C++ on Linux/Unix. getcwd() returns the directory from which the application was run, but I want the actual directory which the build is sitting in.
I know ...
4
votes
2answers
284 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 ...
3
votes
1answer
1k 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
...
27
votes
5answers
23k 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. ...
10
votes
1answer
673 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 ...
1
vote
2answers
771 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 ...
2
votes
3answers
590 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 = ...
3
votes
3answers
598 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 ...
2
votes
2answers
2k 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:/ ...
14
votes
4answers
2k 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 ...