A suffix appended to the end of a filename, in order to identify the type of file. It is (typically) separated from the filename by a period symbol.
6
votes
3answers
136 views
How to open a .dat file (ASCII)?
I tried to open a .dat file using Stata, and it actually opened, but the data set was a complete mess. I took the file from NBER (CPS data)...
click on the A icon of the year 1964 March.
I tried the ...
1
vote
1answer
33 views
Crystal repo download - ExportToHttpResponse is downloading file without extension
rptDoc = new ReportDocument();
rptDoc.Load(Server.MapPath("~/Reports/Rpt/CallPendingReport.rpt"));
rptDoc.SetDataSource(dtData);
Session["ReportDataSet"] = rptDoc;
...
0
votes
1answer
18 views
Bash backup specified file extensions in multiple directories
I have this line here find "$directory" -name "*.sh" -print0 | xargs -0 cp -t ~/bckup that backs up everything ending in .sh. How would I do that for multiple file extensions? I've tried different ...
-4
votes
1answer
36 views
Android: How to get file extension with multiple dots in filename?
How can I get a file extension which has more than one dot in the name?
For example:
image.fromyesterday.hello.jpg
Thanks in advance!
0
votes
1answer
31 views
ASP.NET Webforms routing with extension
I have a simple ASP.NET Webapplication project with url-routing and want to "allow" routes with the fileextension like ".html", e.g...
http://www.mywebsite.com/cms/test.html
...
0
votes
0answers
34 views
How to make a media-playing screen without Windows Media PLayer plugin VB 2008?
I'm trying to develop a media player in Visual Basic Express Edition 2008. How do I:
CREATE a media playing screen, like the one in Windows Media Player, without ANY ActiveX controls and I create ...
0
votes
0answers
12 views
Why are several file extensions marked as directories by NSFileManager?
I've been working on a MacOSX application that analyzes your files and folders. While programming I stumbled upon a strange behavior which I can only partly explain by myself and wanted to ask if ...
0
votes
2answers
16 views
Grep out all file extensions from input
My input is a large list of files. They could have any characters in the name (including periods, because there are some package names as well). Here's some small sample input:
...
0
votes
2answers
48 views
Bash for in loop that executes wrongly when no file found
I have this bash "for in" loop that looks for pdf files in a directory and prompt them (simplified for the example)
#!/bin/bash
for pic in "$INPUT"/*.pdf
do
echo "found: ${pic}"
done
This ...
0
votes
2answers
97 views
htaccess 404 redirect works for .html extension but not .php extension
I have made a custom 404 page and inserted in my htaccess file:
ErrorDocument 404 /404.php
And the error direct works properly whenever I test a url with no extension or an .html extension. ...
0
votes
2answers
21 views
using grep to search
Hey guys I was just curious to see if someone could help me.
I'm trying to search a directory recursively to find a file that has .poem as the extension and contains "I" in it.
when I do
grep -r -e ...
0
votes
2answers
40 views
Would browsers have dificulties opening my pages If I create my own file extension?
Using htaccess, I want to brand my websites by adding a custom extension to all my pages, just for the looks.
Lets say that my company name is "xtreme web design" and I want to have all my pages end ...
0
votes
0answers
41 views
Eclipse Indigo XML editor doesn't open proper XML files with other extensions
So I have a proper xml file with the ending .xcs
When I try to open it, it give me "Unsupported Contend Type" message.
There it tells me to go to the "Content Type Preference Page" and set the default ...
-1
votes
3answers
85 views
Are there any problems associated with using files with no extension on a server? [closed]
I would like to use files with no extension on my server. The reason for this is so that I can use that filename as a variable name as well. Overall it just makes things far easier in the application ...
0
votes
1answer
61 views
Is it possible to make a custom File Packer/Unpacker/Modifier?
I'm currently developing a game and I was wondering if it's possible to make a custom file packer/unpacker/modifier in C#
Where it can pack all files in a whole directory including sub-directories in ...
2
votes
1answer
59 views
Run node.js with different file extension
Is is possible to run node.js with a different extension than .js like: node server.type instead of node server.js?
I have tried require.extensions
require.extensions['.type'] = ...
1
vote
3answers
40 views
Can property files have any file extension
Can property files have any file extension, like .txt? Or will they only work properly with .properties? Can I use a custom file extension, like .foo?
0
votes
0answers
53 views
Register a python script as default for file type
I am making an application with python which will need to be associated with a file type. I need a cross platform solution (can be different for different platforms) that includes setting the icon for ...
0
votes
2answers
152 views
Why do open-source projects often have documentation files with no file extension? [closed]
Open-source projects generally come with a readme file, a file containing the text of the license, and maybe various other things. Often, one finds that these sundry documentation files are named ...
2
votes
3answers
30 views
finding file extension given root name of fie
Hi i have a 2 bash scripts which I'm trying to get to work together. The first script is given a a name of a file along with the directory the file is located within like such:
example_file
...
0
votes
4answers
103 views
unix mv --backup=numbered
Hi im trying in php to move a folder but keep both files in the dest folder if exist duplicate.
i tried todo that in recursion but its too complicated so many things can go wrong for example file ...
0
votes
2answers
470 views
How to save (all) SQL server image datatype to file system with correct file extension
I have different types of files in table (txt, doc, jpg, etc) and I want to save them all to my file system. I know how to do it file by file, but it's no use, I have to do a loop that saves all files ...
0
votes
1answer
167 views
WAMP mod_rewrite RewriteRule not working
I am trying to use adaptive images on my local wamp server. The ai-cache folder is not showing up and the images are not being replaced at all. As per this thread I tried RewriteRule ...
1
vote
1answer
103 views
Associate file type with Java Swing application
I am creating a java swing application and I need to set the my program as the default program for the file extension .mcsd (MIME type text/mcsd). This must work on windows, and it would be nice if it ...
2
votes
2answers
77 views
Creating shader files
I'm trying to learn some DirectX11 and I found good tutorial I'm following; however, for some reason the program crashes (The window appears but then a "not responding" message box appears), even ...
0
votes
2answers
166 views
CodeIgniter's file upload library ignores allowed_types?
I tried to upload a certificate file and failed:
$config["allowed_types"] = "cer";
$this->load->library("upload", $config);
$this->upload->do_upload("fieldname");
I always get the ...
-4
votes
2answers
208 views
Why android application extension .apk? why not .jar or .jad? [closed]
Why google uses .apk for their application file extension name?? Why they didn't uses .jar , .jad or any another file extension??
The only reason I've come far as possible is
.apk means Android ...
0
votes
0answers
50 views
File Extension Association not working in Basic MSI
My installer has TWO Feature1 & Feature2.Each Feature has file association for Feature1 as (.msr),Feature2 as (.qwp).
INSTALLDIR is set to MyInstaller. Changed the installer location to ...
2
votes
4answers
55 views
Shortest way to get the filename extension with PHP
I've seen alot of functions which handle the retrival of an extension of a particular filename. I, myself, always use this solution of mine:
function extension( $filename = __FILE__ ) {
$parts = ...
0
votes
2answers
42 views
Batch Open different programs depending on location
Is there Batch code/c# for if say for example, I have a anime folder and a movies folder and I want to watch anime with program A and movies with Program B.
Is there a way I can get the same file type ...
0
votes
1answer
35 views
How to open .xcm file? [closed]
i am trying to open .xcm file but i am getting weird character file opening in notepad, IE,Firefox and word.
Please suggest how to open this file.
1
vote
1answer
49 views
.jcp equivalent for eclipse?
for one of my labs I have in my CS2 class at school, JCreator is installed on the school's computers with a 4.x version, I'm more of an eclipse person myself, I even use it at school in place of ...
1
vote
1answer
51 views
How can I check file extension of a file in IsolatedStorage?
I need to populate 2 lists in my application.
The first list should contain only .txt files while the second one should contain .jpg files.
Now what I do is something like:
foreach (string file ...
0
votes
0answers
79 views
Read ndx and dat file
I have some binary files with dat and ndx extension that hosted in redhat linux. I need to open this file and read its by sql server. What types of application creates this files? (I am note sure any ...
0
votes
1answer
26 views
Serving a downloadable file without a file extension?
I'm using Rails to serve a file to the user like so:
def show
headers['Content-Disposition'] = "attachment; filename=\"SIGNATURE\""
headers['Content-Type'] = "text/plain"
render :text => ...
2
votes
1answer
346 views
.htaccess Hide File Extension Not Working (WampServer)
I am having some trouble hiding the .html extensions on my website.
I am running on WampServer with Apache V.2.2.22.
rewrite_module is active and i have changed the httpd.conf file to have ...
0
votes
0answers
20 views
What database uses *.k as a file extension?
I've got a *.k file that supposedly contains data records.
I have to move the data to a SQL database but i cannot find anything on the internet to help me figure out in what DBMS I can open this file ...
1
vote
0answers
70 views
htaccess issue with directory when removing extension
I use htaccess to remove .php extension from URL. The problem comes up when there's a file and a directory with the same name. By removing .php extension the server thinks I'm trying to access a ...
0
votes
2answers
192 views
Changing file extensions for all files in a directory OSX
I have a directory full of files with one extension (.txt in this case) that I want to automatically convert to another extension (.md).
Is there an easy terminal one liner I can use to convert all ...
0
votes
0answers
50 views
Create a file extension
I make a java program.
Persistence is performed in a folder "nameFolder.myProgramExtension".
Is it possible that the operating system recognizes "myProgramExtension" as a file extension that opens ...
0
votes
2answers
68 views
Is there a way to change a file's extension to .txt, copy the text to a new file, and change back to the original format without breaking the file?
So I know that this is going to sound like kind of an odd question, but the reason I'm asking is because I'm trying to encrypt a powerpoint presentation, just for fun.
I know that if you change a ...
0
votes
2answers
235 views
“batch” files in bash
I want to make a "batch" file so to say for some bash commands (convert.sh). I think it would be best to describe the situation. i have a $#!^ ton of mp4 videos that i want converted into mp3's. it ...
0
votes
1answer
225 views
MFC SDI with multiple views based on file extension
I'm trying to build an MFC SDI (Single-Document Interface) application with these requirements:
Show only one document at a time.
Support different views based on the file type chosen from the file ...
1
vote
3answers
76 views
How to display an image with any file format in a Java application?
I have this code which accepts only those images with .bmp format
String format="";
if(pic_sel_file.toLowerCase().endsWith(".bmp"))
format="BMP";
How to change this code so that it can accept ...
0
votes
0answers
156 views
URL Rewrite Redirect Rule not working with “.exe”
I have the following code which redirects all urls within the downloads folder to a second site's download folder. It works perfectly as intended, except for .exe files. It returns a 404 error for exe ...
0
votes
1answer
107 views
android browse file intent with defined extension
I need to create intent that will open file manager (if any installed) and I want file manager to show only txt files to user, so user couldn't choose file with wrong extension.
private static ...
0
votes
1answer
31 views
Converting a script & using it
I've been googling to find out how I can insert file extensions to multiple files that have no extension (filename to filename.txt), as well as correcting erroneous extensions (from an incorrectly ...
0
votes
2answers
193 views
Program to check whether extension of a file is .txt
I wrote a java code having an awt text field and a button, where if I click on the button, I can browse a file using JFileChooser. It needs to check whether the file has ".txt" extension or not.I ...
1
vote
1answer
134 views
Get extension from Content-Type
This is a very straight forward question.
I have a Content-Type stored in the form of a string.
Ideally I'd like to infer an extension from that Content-Type without having to have a giant nasty ...
1
vote
0answers
30 views
How can I configure IIS to use customerrors with option set to recreate for all extensions/MIMEs?
I'm currently using customErrors, and I would like to use the recreate option, always.
This currently works for URLs such as
mysite.com/asdf
My custom error page loads as this URL:
mysite.com/asdf
...

