Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
1k views

What does “#define _GNU_SOURCE” imply?

Today I had to use the basename() function, and the man 3 basename gave me some strange message: Notes There are two different versions of basename() - the POSIX version described above, and ...
7
votes
6answers
4k views

DOS BAT file equivalent to Unix basename command?

Is there an easy way to get to the basename (file name without extension) of a DOS file name using the DOS BAT command language? I agree: format c:\ is probably a good start, followed by a bootable ...
3
votes
2answers
204 views

Change URL basename

I'm using AJAX to display a transition between pages and I'd like to change the URL basename when the user clicks on a link. I'm using PHP to be able to use URLs like mydomain.com/mypage, so I'd like ...
3
votes
3answers
749 views

Extract the last directory of a pwd output

How do I extract the last directory of a pwd output? I don't want to use any knowledge of how many levels there are in the directory structure. If I wanted to use that, I could do something like: ...
3
votes
2answers
2k views

Get the file extension (basename?)

If I have a code like this: $file = basename($filename); How do i get the file extension of $file? The variabel file could contain any kind of file, like index.php or test.jpeg.
3
votes
1answer
4k views

makefile: how to add a prefix to the basename?

I have a list of file path like that: FILE_PATH := a1.so a2.so bla/a3.so bla/a3.so bla/blo/a4.so.... I need to add a prefix to the basename in order to get: FILE_PATH_PREFIX := liba1.so liba2.so ...
3
votes
4answers
2k views

What is the best way to do string manipulation in a shell script?

I have a path as a string in a shell-script, could be absolute or relative: /usr/userName/config.cfg or ../config.cfg I want to extract the file name (part after the last /, so in this case: ...
2
votes
2answers
511 views

How to get Ruby Dir#glob to return basenames, not absolute_paths?

FakeProfilePictures::Photo.all_large_names_2x (defined below) returns an array of absolute path names, but when I do Dir["picture_*@2x.*"] from the correct directory in irb, I only get the basenames ...
2
votes
4answers
149 views

Return PHP page based on directory base-name without redirect

I want the server to return a specific PHP page based on the directory name without a redirect. For example: http://www.example.com/home should return the same result as: ...
2
votes
3answers
155 views

I want a to compare a variable with files in a directory and output the equals

I am making a bash script where I want to find files that are equal to a variable. The equals will then be used. I want to use "mogrify" to shrink a couple of image files that have the same name as ...
2
votes
5answers
126 views

How to extract the name of immediate directory along with the filename?

I have a file whose complete path is like /a/b/c/d/filename.txt If I do a basename on it, I get filename.txt. But this filename is not too unique. So, it would be better if I could extract the ...
1
vote
2answers
38 views

basename freebsd work correct with std::string, but without not

I have to small programs First // compile with -lpthread // TEST: // basename #include <pthread.h> #include <string.h> #include <stdlib.h> #include <stdio.h> #include ...
1
vote
3answers
56 views

PHP array_walk does nothing?

I'd like to put each file name in $xsl_dir_path (absolute path) in select element. I've tried this: $files = glob($xsl_dir_path . "/*.xsl"); array_walk($files, 'basename'); but it's not working at ...
1
vote
3answers
699 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
1answer
321 views

Basename quirks - what are they

The documentation for File::Basename says NOTE: "dirname()" and "basename()" emulate the behaviours, and quirks, of the shell and C functions of the same name. See each function's documentation for ...
0
votes
1answer
18 views

how to return the file's path without the file's basename?

I have a long path for a file, for instance, http://www.mysite.com/local/views/templates/home.php and I use basename() to return the file itself only, <?php echo basename($file);?> But how ...
0
votes
0answers
27 views

LINENO in korn shell when include (source) another file

I try to 'debugging' my ksh scripts with LINENO, but if I include another file with . or source LINENO does not work like as I want. this is my code: debug_log "[$(date +%F-%T) $(basename ...
0
votes
1answer
67 views

How to get a filename without extension in ant

I know how to get the basename for a file with java's ANT build tool, but in this case I want to change the name of a file to include a build version number. Unfortunately the file's name gets set in ...
0
votes
3answers
94 views

Get only filename from url in php without any variable values which exist in the url

I want to get filename without any $_GET variable values from a url in php? My url is learner.com/learningphp.php?lid=1348 I only want to retrieve the 'learningphp.php' from the url ? How to do ...
0
votes
2answers
60 views

php echo displaying substr in firefox

I have some code on a php page that gets an image filename strips the extension and removes the first two characters and then adds the string to an echo statement. My problem is that this string is ...
0
votes
1answer
60 views

shell basename error

I am tryng to get the commands from the base name as well.. Thats the reason why i use something like this after parsing the line... while (*line == ' ' || *line == '\n') ...
0
votes
3answers
105 views

Is get or basename() more efficient?

which of the following is more efficient? Using a get function on a token (random), for example: http://www.example.com/category/subcategory/subsubcategory?value=random $_GET['value'] Make the ...
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
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
3answers
157 views

Multiple basename() extensions

We have: $path = "/home/httpd/html/index.php"; $file = basename($path); // $file is set to "index.php" $file = basename($path, ".php"); // $file is set to "index" $file = 'index'; ...
0
votes
2answers
2k views

cakephp how to set base path

How do I set the root of the application? What I mean, is that when I work locally, everything is under the root of my local website (i.e www.in cake.local/). Now I made an application that will ...
0
votes
3answers
577 views

Isn't Using the basename function with $_FILES['userFile']['name'] Redundant?

According to the POST method uploads section of the PHP Manual, $_FILES['userfile']['name'] is the original name of the file on the client machine. Example #2 in that section uses the basename ...
0
votes
5answers
2k views

bash: how to change the basename only of a list of files

I have a lit of files (which I get from find bla -name "*.so") such as: /bla/a1.so /bla/a2.so /bla/blo/a3.so /bla/blo/a4.so /bla/blo/bli/a5.so and I want to rename them such as it becomes: ...