Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
4answers
35k views

How to extract a file extension in PHP?

This is a question you can read everywhere on the web with various answers : $ext = end(explode('.', $filename)); $ext = substr(strrchr($filename, '.'), 1); $ext = substr($filename, ...
15
votes
8answers
2k views

.htm vs .html

Which extension should I choose for my HTML files and why?
12
votes
1answer
2k views

C# - How to allow multiple filetypes in an OpenFileDialog?

I knew this once but I keep forgetting; How do I allow multiple filetypes in one filter entry of the OpenFileDialog? Text files|*.txt // this is OK. Text files|*.txt,*.text // how do I ...
11
votes
6answers
6k views

File extensions and MIME Types in .NET

I want to get a MIME Content-Type from a given extension (preferably without accessing the physical file). I have seen some questions about this and the methods described to perform this can be ...
10
votes
1answer
3k views

what's the file extension .md? How should I edit them?

When I walked around GitHub, I saw many README.md files. It seems a simple format file to express text and pictures. But I googleed it and found nothing. I guess there is an editor or syntax ...
10
votes
10answers
3k views

Remove filename extension in Java

What's the most efficient way to remove the extension of a filename in Java, without assuming anything of the filename? Some examples and expected results: folder > folder hello.txt > hello ...
10
votes
2answers
767 views

Does anyone know how to make notepad++ treat csproj files as XML automatically?

I often use notepad++ for editing of the csproj files. And I always need to go to the Language menu and select XML in order to get syntax highlighting. Is it possible to configure notepad++ to treat ...
9
votes
4answers
1k views

What's the best way for an app on Windows to assocaite itself with a particular file type, such as .xml, .txt, etc., but share that association with other apps that support that extension?

If I create a new app, and associate with, say, the .xml file extension on a particular computer, when someone double clicks the .xml file, it will launch my app and pass the file as parameter. But ...
9
votes
10answers
3k views

File Extension to MIME Type Web Service?

Are there any web services which will allow me to provide a file extension and it would return a list of possible MIME types? For example: http://mimetype.com/getMime/doc Which could return: ...
8
votes
4answers
3k views

How to change filetype association in the registry?

first time posting in StackOverflow. :D I need my software to add a couple of things in the registry. My program will use Process.Start(@"blblabla.smc"); to launch a file, but the problem is ...
7
votes
2answers
11k views

Create registry entry to associate file extension with application in C++

I would like to know the cleanest way of registering a file extension with my C++ application so that when a data file associated with my program is double clicked, the application is opened and the ...
7
votes
5answers
7k views

recursively add file extension to all files

I have a few directories and sub-directories containing files with no file extension. I want to add .jpg to all the files contained within these directories. I've seen bash scripts for changing the ...
6
votes
3answers
175 views

Determining file extension given a FileStream

Is there any way to know the type of the FileStream. I have a function that takes a FileStream object and I want to determine the file extension based on that FileStream.
6
votes
4answers
169 views

Is it possible to get a file extension without knowing it?

I have a file called 94bf663a100e848fb599209af8cdc2b5.wmv. I know pathinfo will not give me the extension if I just use the name 94bf663a100e848fb599209af8cdc2b5. I believe glob is only for checking ...
6
votes
5answers
143 views

How to tell if a file is an EXE or a DLL?

If you've gotten the file extensions messed up, how can you tell an executable apart from a DLL? They both seem to have entry points and everything...
6
votes
3answers
1k views

How do I find out the path of the file triggered by opening a file with a custom file extension?

How do i get the location of the file that i used to open my programs with? Example: if i create a new extention ".xyz" say and i tell windows that i want to open the file type .xyz with ...
6
votes
8answers
910 views

Is there an easy way to determine the type of a file without knowing the file's extension?

I have a table with a binary column which stores files of a number of different possible filetypes (PDF, BMP, JPEG, WAV, MP3, DOC, MPEG, AVI etc.), but no columns that store either the name or the ...
5
votes
2answers
400 views

Associating certain file extension to my android application

I'm having trouble associating my custom file extension to my android application that I am developing. In my android manifest file I have the following: <data android:scheme="file" ...
5
votes
4answers
356 views

Is there a standard file extension for gnuplot files?

I have seen .gnu, .plt, and .gplot as file extensions for gnuplot scripts. I know Linux doesn't care about file extensions, but what extension most universally declares to human beings "I am a ...
5
votes
11answers
595 views

How come some site urls do not include a file extension?

Hey guys, quick question. This has been scratching at my brain for some time so here it goes. I was browsing the internet and noticed, youtube for example contains a url like this to denote a video ...
5
votes
2answers
925 views

PHP check file exists without knowing the extension

I need to check if a file exists but I don't know the extension. IE I would like to do: if(file_exists('./uploads/filename')): // do something endif; Of course that wont work as it has no ...
5
votes
2answers
1k views

How do I restrict access to files with specific extensions in ASP.NET?

I have in my web application an ADO.NET Entity-Framework *.edmx file. When I browse in the browser (when the application is running) to an edmx file, it doesn't show the error page like when browsing ...
4
votes
1answer
357 views

Get large icon from file extension

There are several places that talk about how to get an icon from a file extension such as this one and this other one. After several hours of playing around with this kind of projects I have managed ...
4
votes
1answer
369 views

What is the difference between .m and .mat files in MATLAB

When I traced my reference MATLAB script, I found files with the .mat extension. My questions are: What is the difference between .mat and .m files? How does one open files with the .mat extension? ...
4
votes
3answers
5k views

Remove file extension and path from a string in Perl

I want to obtain a file name without its path (if it is part of the string) and also the extension. For example: /path/to/file/fileName.txt # results in "fileName" fileName.txt ...
4
votes
2answers
630 views

QFileDialog filter from mime-types

I want the filter in a QFileDialog to match all audio file types supported by Phonon on the platform in question. 1 - However I am not able to find a way in Qt to use mime types in a filter. How can ...
4
votes
3answers
2k views

Integrating into Windows Explorer context menu

I want to write a small tool, that does the following: When you right click on a file with a certain file-extension the Windows Explorer context menu shows an additional entry. When you click this ...
4
votes
5answers
6k views

how to create a custom file extension in C#?

I need help in how to create a custom file extension in my C# app. I created a basic notes management app. Right now I'm saving my notes as .rtf (note1.rtf). I want to be able to create a file ...
4
votes
3answers
1k views

What are all these Visual Studio 2005 files for?

I just (re-)joined a company to work on some C++ projects. I'm looking at the files and I'm trying to figure out what all the Visual Studio related files are. Many I suspect are orphans from previous ...
4
votes
1answer
355 views

Opening a file in my application from File Explorer

I've created my own application in VB.NET that saves its documents into a file with it's own custom extension (.eds). Assuming that I've properly associated the file extension with my application, ...
3
votes
1answer
59 views

Sqlite3 database file extension

What is the conventional file extension for an sqlite3 database? (Is there one?) I haven't worked very much with sqlite, and so i've never actually seen the file extension in the wild. I want to ...
3
votes
1answer
92 views

What Are the .NET Platform File Extensions?

I have installed mono platform on my Linux server and I was able to run it behind nginx HTTP server. The system is working well and serving .NET specific dynamic files flawlessly. However, I want to ...
3
votes
6answers
125 views

PHP strip unknown file extension

I understand that using PHP's basename() function you can strip a known file extension from a path like so, basename('path/to/file.php','.php') but what if you didn't know what extension the file ...
3
votes
1answer
127 views

What's the difference between .shared, .metadata and .partial files in Silverlight RIA applications?

I have seen these 3 file types around, though not in the same application. What are they, what is the difference between them and are there any other special extensions to know about?
3
votes
5answers
272 views

What does XAP stand for?

What does XAP stand for? is it an acronym? I know what silverlight XAP file contains but dont know what it stands for.
3
votes
1answer
337 views

How to remove the file extension in a zsh completion?

I want to adjust zsh so that I can tab complete: myprog <tab> using all *.foo files in ~/somedir, but have it so that it displays them without the .foo extension. Is there any way to do ...
3
votes
3answers
616 views

Indicate programming language in a file without extension

When writing executable scripts, and declarative configuration files that use a common language (eg. Python), I often find it undesirable to add an extension to the file name. Many syntax-highlighting ...
3
votes
2answers
1k views

How to get the corresponding file extension if the mimeType of the file is known

When coding in java, How to get the corresponding file extension if the mimeType of the file is known?
3
votes
8answers
2k views

How do you change the filename extension stored in a string in c++?

Alright here's the deal, I'm taking an intro to c++ class at my university and am having trouble figuring out how to change the extension of a file. First, what we are suppose to do is read in a .txt ...
3
votes
1answer
229 views

Windows - Unknown File Type & Windows Web “Lookup”

On MS Windows, when you double-click a file with an unknown file extension, the OS presents you with a message giving you a a choice of: 1 - Use the Web service to find the appropriate program 2 - ...
2
votes
2answers
38 views

Using Python to match split-RAR extensions

I'm using a Python script in EventGhost to match certain file types in a directory and move them to certain places for other programs to perform actions on them. Here's the entire script: import ...
2
votes
3answers
82 views

Does PHP have a function that returns the correct file extension given a valid content type?

Does PHP have a function that returns a file extension given a content type? I'm looking for something that works like: <?php function getFileExtension($contentType) { if ($contentType === ...
2
votes
5answers
34 views

What option should be used restrict the git diff to a given set of file extensions?

Is there an option to restrict git diff to a given set of file extensions?
2
votes
3answers
121 views

Detect file extension c#

There is a virus that my brother got in his computer and what that virus did was to rename almost all files in his computer. It changed the file extensions as well. so a file that might have been ...
2
votes
1answer
92 views

Extract file extension from file path

How can I extract the extension of a file given a file path as a character? I know I can do this via regular expression, but wondering if there's a built-in function to deal with this?
2
votes
1answer
96 views

How to read file with custom extension to textBox

Is there any way to read file with custom extension to textBox? Is there any convertation to some supported formats? I need read file with custom extension, like text.blahblahblah.
2
votes
3answers
134 views

Overlap between Objective-C and MATLAB/Octave file extensions

Do Objective-C or MATLAB/Octave have source file extensions besides .m? I ask because I'm putting Hello World programs in a single folder and I can't have two hello.m files.
2
votes
2answers
88 views

Recognizing files with an application

After I save a file in a folder with correct extension, when I go back and look at it, the file is unrecognizable to the application. The file association appears to be lost. I want Windows to be ...
2
votes
3answers
699 views

Can I use images without extension in <img>?

I'd like to use something like <img src="advertisements/12" style="border: 1px solid"> in a page. FireFox won't display it, which makes me think I have to have a file extension for the file. Am ...
2
votes
3answers
146 views

Validating a file is what it claims to be by it's file extension

Is there a way to validate a file is what it claims to be according to it's file extension? I have a large number of files that my application copies to a remote server. Before doing each file copy I ...

1 2 3 4