Top "Filenames" questions

Filenames are metadata about a file; a string used to uniquely identify a file stored on the file system of a computer.

Get filename and extension from filepath programmatically cocoa?

I know you can use NSBundle: NSString *filePath = [[NSBundle mainBundle] pathForResource:@"foo" ofType:@"rtf"]; to get the filepath of a …

cocoa nsstring filenames filepath nsbundle
Get file name without extension?

I'm new to C++ world, I stuck with a very trivial problem i.e. to get file name without extension. …

c++ visual-c++ filenames filehandle
How to set filename containing spaces in Content-Disposition header

I have this piece of code: resp.addHeader("Content-Disposition", "inline; filename=" + fileName); When the file name is "a_b_c.…

java servlets download filenames
In Batch: Read only the filename from a variable with path and filename

I am currently looking for a way to take a variable in batch and only parse out the filename. For …

batch-file dos filenames
What is the convention for Lisp filename extension?

".el" is the convention for filename ending with Emacs Lisp programs. What is the convention when writing Common Lisp programs, …

lisp common-lisp filenames pathname
How do I get the current file, current class, and current method with Python?

Name of the file from where code is running Name of the class from where code is running Name of …

python filenames
How to concatenate an absolute path and relative path with QDir?

I have a relative path and absolute path that look something like this: Absolute: /tmp/somedir Relative: anotherdir/file.txt …

qt filenames relative-path absolute-path qdir
how to export csv file with filename

I want to export the exist data into csv file. I try to use this code: var uriContent = "data:text/…

javascript csv export filenames encodeuricomponent
How to remove files starting with double hyphen?

I have some files on my Unix machine that start with -- e.g. --testings.html If I try to …

bash unix filenames
Obtain filename from file pointer in C

Possible Duplicate: Getting Filename from file descriptor in C How get fileName having FILE*? Is there any way where I …

c filenames file-pointer