Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
7answers
625 views

How to properly determine current script directory in Python?

I would like to see what is best way to determine current script directory in python? I discovered that two to the many ways of calling python code, it is hard to find a good solution. Here are some ...
5
votes
2answers
293 views

How can I determine the current directory name in R?

The only solution I've encountered is to use regular expressions and recursively replace the first directory until you get a word with no slashes. gsub("/\\w*/","/",gsub("/\\w*/","/",getwd())) Is ...
2
votes
2answers
164 views

Unix C - Compiling for 64 bit breaks “dirname”

I'm using dirname from libgen.h to get the directory path from a filename's path. This is it's signature: char * dirname (char *path) When compiling on a 32 bit machine or using -m32 with gcc, it ...
1
vote
1answer
44 views

Finding Directory Name in other directory with PHP

I have a file which name is load.php near index.php in root folder. So i only have two files in root. I like clear works like most. Today i needed to define directories in one file name is ...
1
vote
3answers
703 views

Use GNU versions of basename() and dirname() in C source

How do I use the GNU C Library version of basename() and dirname()?. If you #include <libgen.h> for dirname You're already getting the POSIX, not the GNU, version of basename(). (Even if ...
1
vote
4answers
126 views

Finding a module's directory

How can I find what directory a module has been imported from, as it needs to load a data file which is in the same directory. edit: combining several answers: module_path = ...
1
vote
5answers
1k views

OS X bash: dirname

I want to create a simple bash script to launch a Java program on OS X. The names of the file, the file path, and the immediate working folder all contain spaces. When I do this: #!/bin/sh cd ...
0
votes
1answer
56 views

PHP: include file with dirname(__FILE__) but still get php code assist in Eclipse

In a script I include a php library with : include_once dirname(__FILE__) . "/lib.php"; This way I don't get code assist for the functions in this library in Eclipse. But if I use : include_once ...
0
votes
3answers
43 views

pointer being freed was not allocated (osx only)

The function below basically emulates mkdir -p, recursively creating directories for a given path. With Linux I have no issues, however running under OSX it always segfaults with the error pointer ...
0
votes
1answer
248 views

htaccess document_root dirname

is it possible to do this RewriteRule robots.txt dirname(%{DOCUMENT_ROOT})/robots.php [L] i need get parent folder of DOCUMENT_ROOT
0
votes
2answers
127 views

how to get dirname of a GFile?

When using GIO and GVFS, how do I best get the directory name of a GFile object? There is a get_basename() function but no get_dirname(). The function should work for remote URIs as well. Also, it ...
0
votes
1answer
92 views

${file%/*} replaces spaces with underscores

converting mp3 to ogg-files is dine by a simple script. But: When i construct the new pathname and filename with # set the 'file' variable first file="$1" # get extension; everything ...
0
votes
1answer
108 views

Where does the dirname/basename terminology originate?

What are the origins and reasons for the terms, dirname and basename, referring to the path with the trailing component removed, and the trailing component respectively? Is the terminology ...
0
votes
2answers
176 views

shell script fun! how to perform an action on each subdirectory from a given path?

I am writing a shell script (which I suck at) and I need some help. Its a script that is moving things from git to CVS (not important). The thing is, i a file path: ...
-5
votes
1answer
91 views

What is the difference between dirname(__FILE__) and realpath(dirname(__FILE__))? [closed]

Can anyone tell me what is the difference between dirname(__FILE__) and realpath(dirname(__FILE__))? Thank you! Note: Both produce the same results.