Tagged Questions

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

learn more… | top users | synonyms (2)

94
votes
13answers
70k views

Extract filename and extension in bash

I want to get the filename (without extension) and the extension separately. The best solution I found so far is: NAME=`echo "$FILE" | cut -d'.' -f1` EXTENSION=`echo "$FILE" | cut -d'.' -f2` This ...
70
votes
4answers
32k views

Extracting extension from filename in Python

Is there a function to extract the extension from a filename? Thanks all! That's what I needed!
38
votes
15answers
16k views

Turn a string into a valid filename in Python

I have a string that I want to use as a filename, so I want to remove all characters that wouldn't be allowed in filenames, using Python. I'd rather be strict than otherwise, so let's say I want to ...
29
votes
10answers
2k views

Validate a file name on Windows

public static boolean isValidName(String text) { Pattern pattern = Pattern.compile("^[^/./\\:*?\"<>|]+$"); Matcher matcher = pattern.matcher(text); boolean isMatch = ...
25
votes
8answers
68k views

Maximum filename length in NTFS (Windows XP and Windows Vista)?

I'm designing a database table which will hold filenames of uploaded files. What is the maximum length of a filename in NTFS as used by Windows XP or Vista?
20
votes
11answers
18k views

Sanitizing strings to make them URL and filename safe?

I am trying to come up with a function that does a good job of sanitizing certain strings so that they are safe to use in the URL (like a post slug) and also safe to use as file names. For example, ...
19
votes
15answers
11k views

Correct C++ code file extension? .cc vs .cpp

I have seen C++ code live in both .cc and .cpp files. Which of these (or another!) is the best practice/most modern/best to use? http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml seems ...
18
votes
3answers
20k views

Get file name from URI string in C#

I have this method for grabbing the file name from a string URI. What can I do to make it more robust? private string GetFileName(string hrefLink) { string[] parts = hrefLink.Split('/'); ...
15
votes
6answers
3k views

How to make a valid Windows filename from an arbitrary string?

I've got a string like "Foo: Bar" that I want to use as a filename, but on Windows the ":" char isn't allowed in a filename. Is there a method that will turn "Foo: Bar" into something like "Foo- ...
13
votes
2answers
349 views

Git character encoding with Spanish characters

I created a repository from existing files. Inside the set of files, was one with the name "español.gif". Now, everytime I do $ git status I receive an error: $ path/espa�ol.gif: Protocol error ...
10
votes
3answers
3k views

Is there a cross-platform Java method to remove filename special chars?

I'm making a cross-platform application that renames files based on data retrieved online. I'd like to sanitize the Strings I took from a web API for the current platform. I know that different ...
10
votes
6answers
5k views

How can I sanitize a string for use as a filename?

I've got a routine that converts a file into a different format and saves it. The original datafiles were numbered, but my routine gives the output a filename based on an internal name found in the ...
9
votes
2answers
311 views

What is the correct way to join multiple path components into a single complete path in emacs lisp?

Suppose I have variables dir and file containing strings representing a directory and a filename, respectively . What is the proper way in emacs lisp to join them into a full path to the file? For ...
9
votes
3answers
267 views

What's the advantage of having an 8-letter process?

If you run Sticky Note in Windows 7,its process, is called StikyNot.exe. Several other Windows processes keep their process names under 8 letters. Why do they do that? What is the advantage? Are ...
9
votes
6answers
1k views

What is your favorite date and time format in a file name?

This is a somewhat subjective question, and not very important in the big scheme of things, but something that yet annoys me regularly. There seems to be no self-evident way to put a timestamp in a ...
9
votes
10answers
25k views

How to get file extension from string in C++

Given a string "filename.conf", how to I verify the extension part? I need a cross platform solution.
8
votes
6answers
120 views

How bad is idea of letting users to upload and store files with national characters in the filename?

Our CMS accepts files with national characters in their names and stores them on the server without a problem. But how bad is such approach in perspective? For example is it possible to store files ...
8
votes
2answers
2k views

Can I find a filename from a filehandle in Perl?

open(my $fh, '>', $path) || die $!; my_sub($fh); Can my_sub() somehow extrapolate $path from $fh?
8
votes
9answers
4k views

Bash script to replace spaces in file names

Can anyone recommend a safe solution to recursively replace spaces with underscores in file and directory names starting from a given root directory? For example, $ tree . |-- a dir | `-- file ...
8
votes
4answers
2k views

How to make an NSString path (file name) safe

I'm using very tricky fighting methods :) to make a string like 'Fi?le*/ Name' safe for using as a file name like 'File_Name'. I'm sure there is a cocoa way to convert it. And I'm sure the best place ...
8
votes
7answers
2k views

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 remove it I get the following error: cb0$ rm --testings.html rm: illegal option -- - usage: rm [-f | -i] ...
7
votes
2answers
185 views

Fully qualified file name in R

I wish to get the fully qualified name of a file in R, given any of the standard notations. For example: file.ext ~/file.ext (this case can be handled by path.expand) ../current_dir/file.ext etc. ...
7
votes
5answers
345 views

In Python, how can I get the correctly-cased path for a file?

Windows uses case-insensitive file names, so I can open the same file with any of these: r"c:\windows\system32\desktop.ini" r"C:\WINdows\System32\DESKTOP.ini" r"C:\WiNdOwS\SyStEm32\DeSkToP.iNi" ...
7
votes
2answers
182 views

How to handle undecodable filenames in Python?

I'd really like to have my Python application deal exclusively with Unicode strings internally. This has been going well for me lately, but I've run into an issue with handling paths. The POSIX API ...
7
votes
8answers
1k views

How do I create a random image name in C#?

When I add a picture I want it to create a new random file name because if you add a picture with the same name it will just overwrite.
7
votes
2answers
5k views

Extract File Basename Without Path and Extension in Bash

Given file names like these: /the/path/foo.txt bar.txt I hope to get foo bar Why this doesn't work? #!/bin/bash fullfile=$1 fname=$(basename $fullfile) fbname=${filename%.*} echo $fbname ...
7
votes
5answers
245 views

What should I name my files with generic class definitions?

I'm writing a couple of classes that all have generic type arguments, but I need to overload the classes because I need a different number of arguments in different scenarios. Basically, I have ...
7
votes
5answers
543 views

Python: getting filename case as stored in Windows?

Though Windows is case insensitive, it does preserve case in filenames. In Python, is there any way to get a filename with case as it is stored on the file system? E.g., in a Python program I have ...
7
votes
2answers
974 views

Git - change case of a file on windows?

There are a couple of files in our git-controlled codebase that I'd like to rename. Specifically, I just want to change the case of the file, so that sourceCode.java becomes SourceCode.java, for ...
7
votes
3answers
2k views

Java Can't Open a File with Surrogate Unicode Values in the Filename?

I'm dealing with code that does various IO operations with files, and I want to make it able to deal with international filenames. I'm working on a Mac with Java 1.5, and if a filename contains ...
7
votes
2answers
1k views

Are there any invalid linux filenames?

If I wanted to create a string which is guaranteed not to represent a filename, I could put one of the following characters in it on Windows: \ / : * ? | < > e.g. this-is-a-filename.png ...
6
votes
1answer
90 views

Using the file name to name a column

I have hundreds of csv files (zoo objects in R) with 2 columns: "Index","pp" 1951-01-01,22.9 1951-01-02,4.3 1951-01-03,4.6 I want the second column to have the name of each file. For example, ...
6
votes
2answers
189 views

How do I write a file whose *filename* contains utf8 characters in Perl?

I am struggling creating a file that contains non-ascii characters. The following script works fine, if it is called with 0 as parameter but dies when called with 1. The error message is open: ...
6
votes
3answers
364 views

C# Get filename from mail attachements

I have a simple C# app that send SMTP emails (using System.Net.Mail classes). After sending (emailing) a MailMessage object I want to iterate through the list of the attachments and delete the ...
6
votes
2answers
271 views

Find long (>255) filenames

There are some folder with more than 100 files on it. But all files and folders names broken with wrong encoding names (UTF->ANSI). "C:\...\Госдача-Лечебни ...
6
votes
2answers
2k views

What characters allowed in file names on Android?

What special characters are allowed for file names on Android? ~!@#$%^&*()_+/\., Also, can I save file with Unicode name?
6
votes
1answer
489 views

File name? Path name? Base name? Naming standard for pieces of a path

I keep getting myself in knots when I am manipulation paths and file names, because I don't have a common naming system that I use. I need to come up with a naming standard and stick to it, and I ...
6
votes
3answers
802 views

Tab-completion of filenames as arguments for MATLAB scripts

We all know MATLAB provides tab-completion for filenames used as arguments in MATLAB function like importdata,imread. How do we do that for the functions we create? EDIT: Displays the files and ...
6
votes
2answers
1k views

How do I determine the extension(s) associated with a MIME type in PHP?

Is there a quick and dirty mapping of MIME types to extensions in PHP that I can make use of?
6
votes
6answers
3k views

Is this the best way to get unique version of filename w/ Python?

Still 'diving in' to Python, and want to make sure I'm not overlooking something. I wrote a script that extracts files from several zip files, and saves the extracted files together in one directory. ...
5
votes
4answers
75 views

Is there a way to make vim recognize line numbers at end of filenames?

I work almost exclusively in the terminal, and very often I need to view files that appear in error stacktraces. A very common format is /some/file:99, where 99 is the line number. I'd like to be able ...
5
votes
1answer
299 views

Python - error when zipping files, 'L' format requires 0 <= number <= 4294967295

I run this code for zipping folders and files. def save_folder_as_zip(self, folder_to_zip, save_as): zipf = zipfile.ZipFile(str(save_as), mode="w", allowZip64=True) self.create_zip(zipf, ...
5
votes
1answer
63 views

Absolute (“/foo”) and relative (“../foo”) file names. What is the “foo” category called?

There are three types of file names First (rooted below some kind of "current working directory") ../foo ./foo bar/foo # really in this group? And (rooted in an absolute path, independent of the ...
5
votes
3answers
149 views

Copy/extract part of a File path?

How can I copy/extract part of a File path? For example, say if I have this path: D:\Programs\Tools\Bin\Somefile.dat how could I copy/extract it to make it like this: C:\Users\Bin\Somefile.dat or ...
5
votes
7answers
254 views

Perl - Can I get paths related to where a script resides and where it was executed from?

I'm looking for a way to get two pieces of information: The full path of where a script resides including its filename The full path of where a script was executed from I know you can use $0 to ...
5
votes
2answers
469 views

Bash escapes tilde and wildcards but not space

(EDIT in solution with sed) I have a list of filenames and directories, including tilde and wildcards. E.g.: ~/docs/file.* ~/my docs/*.txt ... I read the rows and pass them to a command (e.g. ...
5
votes
1answer
326 views

bash: Truncate Filenames, keeping them unique

I'm using a for-loop similar to this one to truncate all filenames in a folder to 16 characters: for i in *; do Shortname=${i:0:16} # Let's assume I don't need the extension mv "$i" ...
5
votes
1answer
421 views

How to deal with Windows' ReadDirectoryChangesW() and its mixed long/short filename output?

I am developing a piece of C code that uses ReadDirectoryChangesW() to monitor changes under a directory in Windows. I have read the related MSDN entries for ReadDirectoryChangesW() and the ...
5
votes
5answers
77 views

Displaying a links absolute location

Is there any way I can display a links location absolutely when I only reference it relatively. I.e. A file is relatively referenced like... <a href='../../files/uploaded_file.jpg'>Your ...
5
votes
5answers
134 views

Is there a more correct type for passing in the file path and file name to a method

What I mean by this question is, when you need to store or pass a URL around, using a string is probably a bad practice, and a better approach would be to use a URI type. However it is so easy to ...

1 2 3 4 5 13