The getcwd() function retrieves the current working directory pathname on POSIX compliant machines.

learn more… | top users | synonyms

0
votes
4answers
63 views

Get URL of a file on a server with PHP

Say I want to find a file in one of the parent directories of the script. Consider this file tree: Folder0 Folder1 needle.php Folder2 Folder3 ...
1
vote
2answers
71 views

Why does getcwd() returns / in __destruct()?

I have just noticed that getcwd() return "/" if called within __destruct() magic function, while in any other method it returns the expected path. Do you have an explanation for this?
2
votes
1answer
41 views

Return file directories in an array

I`m trying to create a function that reads a directory and returns all file's working directories in an array, but it is not working. I don`t know why the code doesn`t work, can you help me? ...
0
votes
1answer
95 views

Is there a wchar_t version of getcwd?

I am trying to this: wchar_t buff[PATH_MAX]; wgetcwd( buff, PATH_MAX); I have also tried _wgetcwd. Google suggests _wgetcwd is in dir.h, but i have never heard of such a header file. I'm using GCC ...
0
votes
3answers
106 views

getcwd() returns NULL after new pointer is created

I've just started learning linux and C, please don't judge me strictly. I'm trying to find a current working directory and to open file in this directory to find a specific word. It gives correct ...
3
votes
0answers
4k views

sh: 0: getcwd() failed: No such file or directory on cited drive [closed]

I'm try to compile ARM code in Ubuntu 12. everything working fine when I'm put code in local directory. But when i put the code in cited mount directory error below is show up. making testXmlFiles ...
3
votes
1answer
2k views

shell init issue when click tab, what's wrong with getcwd?

once i click Tab on bash, the error message will appear, what's wrong? symlink-hook: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory ...
0
votes
1answer
106 views

php getcwd() - exclude server directories

I have the following line of code which works on my local machine because the root directory of the server is the same as the root directory of the site. $directories = explode("/", ...
3
votes
4answers
221 views

Python os.getcwd() returns with tilde in the path. e.g. C:\MYFOLD~1\test

How can I get python to return the full pathname of C:\myfolderisafolder\test?
0
votes
1answer
443 views

PHP getcwd() function to be used with include or require in different directories

I need to include a path from a config file in one directory on other scrpits a few directories up or down. My config file has a function like this: $execute_path = getcwd() . "/execute.php"; The ...
0
votes
1answer
273 views

gcc throws: undefined reference to `_getcwd'

I'm trying to compile this sourceforge-project in ubuntu 11.10 x64: http://vmb.sourceforge.net/ Linux users have to compile the devices from sources. Either obtained from cvs (see: ...
0
votes
3answers
191 views

Do I need to use substr() to bring up a directory or can I another code?

Everything in this file is set up in a way in which $_GET['q'] brings up the main domain name and the other directories in the website are brought up in this manner: else if (substr($_GET['q'], 0, 7) ...
5
votes
2answers
736 views

php getcwd() resolving target of symlink instead of current directory

As far as I am aware, php's getcwd() (and similar functions eg dirname(__FILE__)) are supposed to return the current directory of the file being executed. If the current directory happens to be a ...
0
votes
3answers
389 views

Is there any alternative API for getcwd to get the working direcory of process

In our application we call getcwd(3) to get the current working directory. When the process starts running, if anyone deletes the directory path, then the process is running but getcwd API fails ...
0
votes
8answers
186 views

Wrap C block in function. Beginner question

I found the C snippet to get the current working directory from here. Essentially, the code is: char directory[_MAX_PATH]; getcwd(directory, sizeof(directory)) I want to abstract that into another ...
6
votes
5answers
4k views

get current working directory in Lua

What's the Lua to get the current working directory on Windows XP SP3 (or to get the directory of the currently-running Lua file)? I prefer not to use LuaFileSystem. I can't use os.execute("cd") ...
2
votes
5answers
3k views

warning: comparison between pointer and integer in C

I get a warning warning: comparison between pointer and integer on the line containing if from the next piece of code: char cwd[1024]; if (getcwd(cwd, sizeof(cwd)) != (char*)NULL) ...
1
vote
2answers
977 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 ...
2
votes
3answers
4k views

PHP: How to set current working directory to be same as directory executing the script

I'm in the process of transferring my website from one server to another. I have some php scripts that use the is_readable function which uses the current working directory. On the old server, ...
0
votes
0answers
105 views

getcwd crashes for me [closed]

_getcwd(ab,256) keeps giving me access violation or crashing the program. What is the problem?
2
votes
2answers
211 views

getcwd second parameter

What should i fill in the second parameter of the function getcwd if I am reading the current directory?
22
votes
11answers
18k views

Python: How to find script's directory

Consider the following python code: import os print os.getcwd() I use os.getcwd() to get the script file's directory location. When I run the script from the command line it gives me the correct ...
0
votes
1answer
315 views

Why does system() complain that cwd is not known?

I am using system() to run some Unix commands from my application with code like the following: std::stringstream command; command << "rm -rf /some/directory"; int rmResult = ...
5
votes
1answer
505 views

How do I use a relative path in a Python module when the CWD has changed?

I have a Python module which uses some resources in a subdirectory of the module directory. After searching around on stack overflow and finding related answers, I managed to direct the module to the ...
0
votes
1answer
227 views

Placing function in .dll causes debug assertion failed error

Hallo fellow members, I run into a very strange problem today and I am not exactly sure as to what is causing it. Here is a function which I use to get the current working directory : #ifdef _WIN32 ...
1
vote
3answers
335 views

What could change the directory in php Windows besides chdir() and chroot()? (Simpletest include file bug in Windows)

(Sorry if this is titled poorly. I'm actually trying to accomplish two things - find out how the current directory can get changed in PHP, and fix a bug in Simpletest running on WAMP.) I'm running ...
1
vote
2answers
1k views

What can I do if getcwd() and getenv(“PWD”) don't match?

I have a build system tool that is using getcwd() to get the current working directory. That's great, except that sometimes people have spaces in their paths, which isn't supported by the build ...
2
votes
6answers
3k views

How return a std::string from C's “getcwd” function

Sorry to keep hammering on this, but I'm trying to learn :). Is this any good? And yes, I care about memory leaks. I can't find a decent way of preallocating the char*, because there simply seems to ...
2
votes
3answers
1k views

What is a cross-platform way to get the current directory?

I need a cross-platform way to get the current working directory (yes, getcwd does what I want). I thought this might do the trick: #ifdef _WIN32 #include <direct.h> #define getcwd ...
1
vote
2answers
280 views

getcwd for current location based on ftp account permission

I'm trying to make a small script that's changing the permission for specific file using a ftp connection. My problem is the absolute path. I have a ftp account wich land on the script directory ...
4
votes
5answers
417 views

Does the order I declare pointers really matter in C? getcwd() problem

On a Solaris 5.8 machine, I have the following code: [non-working code] char *buf; char *dir; size_t psize; psize = (size_t) 1024; dir = getcwd(buf, psize); On this unix machine, the above does ...
6
votes
5answers
10k views

Is there a C++ equivalent to getcwd?

I see C's getcwd via: man 3 cwd I suspect C++ has a similar one, that could return me a std::string . If so, what is it called, and where can I find it's documentation? Thanks!