Skip to main content

All about How to open any file extension

If you have a file and you want to open it, try vsiting file.org site this can help you to open any file with any extension and it will show yiu  the steps to do that.
the URL for the site is File.org [1]

To use this site:
Just type the file extension name and click on Find for example if you want to open a file with .tar the site will tell you some information about this extension and will suggest a software to open it [2].

File.org Home Page
[1] Home page for the File.org web site


[2] .tar extension


Top sites that helping you open your file extension:
    • FILExt is a web site to search for programs that use a particular file extension. You can also search for file extensions starting with a particular letter. 

filext
  •  dotwhat.net
    • DotWhat? provides as much information on each file extension as possible and encourages visitors to contact them if they have any additional information on an extension or if they think a new file extension should be added to DotWhat database.
DotWhat?

  • fileinfo 
    • FileInfo.com contains a searchable database of thousands of file extensions with detailed information about the associated file types. You can use FileInfo.com to look up information about unknown file types and find programs that open the files.
fileinfo

  • filedesc 
    • FIleDesc provides an extension registry that you can use to search for your file extension and the site will suggest you the software's that can open it. Also you have the ability to submit your new file extension to be added to the site database.

FileDesc
  • file-extension.com 
    • File-extension the free online file extension library. This site includes a detailed database
      of file extensions, what they are used for, programs they are associated with, and also provides information on how to fix file extension related errors.

file-extension

 Read More:
Free Programs to Open any File extension:

Comments

  1. Hi Samir,

    Thanks for such a wonderful list, it’s very useful.

    I think fileformat.com is also a very useful site sharing about how to open a file with any extension.

    FileFormat.com is Your File Format Guide. It contains Information, news and discussions about the file formats that you come across in your daily work and which products support them. At our File Format Wiki you can find information about file formats from application as well as developer's perspective. You can find Description of file formats, History in perspective of their development with time and Characteristics of files of particular formats in terms of specifications.

    Many Thanks

    ReplyDelete

Post a Comment

Popular posts from this blog

Error Class names are only accepted if annotation processing is explicitly requested

Do you get the following error? Class names, 'Hello', are only accepted if annotation processing is explicitly requested 1 error In case you got this error, then you forget to add .java to the file name when you compile it So when you want to compile a file using cmd console window write the filename.java extension Example: Javac Hello.java If you write it in this way the error will go away. So don’t forget to include suffix with your file name during compilation.

An attempt was made to insert a node where it is not permitted

Do you face this Error while you are writing code to generate xml file from java? Exception in thread "main" org.w3c.dom.DOMException : HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted.        at com.sun.org.apache.xerces.internal.dom.CoreDocumentImpl.insertBefore(Unknown Source)        at com.sun.org.apache.xerces.internal.dom.NodeImpl.appendChild(Unknown Source)        at generatexml.WriteXMLFile.main( WriteXMLFile.java:30 ) Well the answer is: Don't insert the node where it isn't permitted. Change your generated directory file path from 'C' to other directory ex, D or to any directory you have. Make sure the ‘appendChild’ is referring to the right element. Don’t appending twice, only make it once. Ex, //Writetoxml.java   Element rootElement = doc . createElement ( " Company " );   doc . appendChild ( ro...

What do you know about HKEY_LOCAL_MACHINE (HKLM)?

What is it? HKEY stands for " Handle to Registry Key ”. The HKEY_LOCAL_MACHINE subtree contains information about the local computer system, including hardware and operating system data, such as bus type, system memory, device drivers, and startup control parameters. It is one of several registry hives in the Windows Registry . HKEY_LOCAL_MACHINE contains the majority of the configuration information for the software you have installed and for the Windows operating system itself. It also contains information about currently detected hardware and, beginning in Windows Vista, information about your computer's boot configuration. HKLM components The following registry keys are located under the HKEY_LOCAL_MACHINE hive: HKEY_LOCAL_MACHINE\BCD00000000 HKEY_LOCAL_MACHINE\COMPONENTS HKEY_LOCAL_MACHINE\HARDWARE HKEY_LOCAL_MACHINE\SAM HKEY_LOCAL_MACHINE\Schema HKEY_LOCAL_MACHINE\SECURITY HKEY_LOCAL_MACHINE\SOFTWARE HKEY_LOCAL_MACHINE\SYSTEM No...