<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Computer Files &#187; file extension</title>
	<atom:link href="http://www.computer-files.com/tag/file-extension/feed" rel="self" type="application/rss+xml" />
	<link>http://www.computer-files.com</link>
	<description>Everything you need to know about computer files</description>
	<lastBuildDate>Fri, 03 Jun 2011 12:51:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>How to change file extensions</title>
		<link>http://www.computer-files.com/how-to-change-file-extensions.html</link>
		<comments>http://www.computer-files.com/how-to-change-file-extensions.html#comments</comments>
		<pubDate>Mon, 14 Jan 2008 09:11:33 +0000</pubDate>
		<dc:creator>Computer Expert</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[.doc]]></category>
		<category><![CDATA[file extension]]></category>

		<guid isPermaLink="false">http://www.computer-files.com/2008/01/14/how-to-change-file-extensions/</guid>
		<description><![CDATA[There are cases when the filename doesn&#8217;t have the right extension as it was intentionally changed either to confuse someone or of security reasons. Whenever this happens, the file can not be accessed by the application it was created with. An example is when a Microsoft Word file extension is being changed from .doc to [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<div id='dd_ajax_float'><div class='dd_button_v'><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script> <a class='DiggThisButton DiggMedium' href='http://digg.com/submit?url=http%3A%2F%2Fwww.computer-files.com%2Ftag%2Ffile-extension%2Ffeed&amp;title=file%20extension'></a></div><div style='clear:left'></div><div class='dd_button_v'><a title='Post on Google Buzz' class='google-buzz-button' href='http://www.google.com/buzz/post' data-button-style='normal-count' data-url='http://www.computer-files.com/tag/file-extension/feed'></a><script type='text/javascript' src='http://www.google.com/buzz/api/button.js'></script></div><div style='clear:left'></div><div class='dd_button_v'><iframe src='http://api.tweetmeme.com/button.js?url=http://www.computer-files.com/tag/file-extension/feed&source=&service=&service_api=&style=normal' height='61' width='50' frameborder='0' scrolling='no'></iframe></div><div style='clear:left'></div><div class='dd_button_v'><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.computer-files.com%2Ftag%2Ffile-extension%2Ffeed" send="false" show_faces="false" layout="box_count" width="50" ></fb:like></div><div style='clear:left'></div><div class='dd_button_v'><script src='http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.computer-files.com%2Ftag%2Ffile-extension%2Ffeed'></script></div><div style='clear:left'></div></div><div class='dd_content_wrap'><p>There are cases when the filename doesn&rsquo;t have the <strong>right extension</strong> as it was intentionally changed either to confuse someone or of security reasons. Whenever this happens, the file can not be accessed by the application it was created with. An example is when a Microsoft Word file extension is being changed from <strong>.doc</strong> to <strong>.exe</strong>. The Operating System will automatically send an error message when the file is being launched.</p>
<p>In case you are using Windows Operating System, the change of a file extension is very easy however before doing so; you have to check if the system is showing the extensions of the files. If not, then you must enable the Operating System to show extensions of the files. After this you will right click on the file, select Rename then delete the actual file extension and type the new one.</p>
<p>In case you are using Linux or UNIX, the command for changing file extension is as follows:<br /> mv filename.exe filename.doc</p>
<p><strong>Renaming multiple file extensions<br /> </strong>There are cases when you need to rename the file extension of many files with the same extension. For this the only thing you have to do is to type the following command in MS-DOS under the directory in which your files are being stored:<br /> ren *.doc *.txt<br /> The above example will rename .doc file extensions to .txt of all the files in the current directory.</p>
</div><style type="text/css" media="screen">#dd_ajax_float{
	background:none repeat scroll 0 0 #FFFFFF;
	border:1px solid #DDDDDD;
	float:left;
	margin-left:-120px;
	margin-right:10px;
	margin-top:10px;
	position:absolute;
	z-index:9999;
}</style><script type="text/javascript">jQuery(document).ready(function($){

	//put content div class, when scroll beyond this y, float it
	var $postShare = $('#dd_ajax_float');
	
	if($('.dd_content_wrap').length > 0){
	
		var descripY = parseInt($('.dd_content_wrap').offset().top) - 20;
		var pullX = $postShare.css('margin-left');
	
		$(window).scroll(function () { 
		 
			var scrollY = $(window).scrollTop();
			var fixedShare = $postShare.css('position') == 'fixed';
			
			//make sure .post_share exists
			if($('#dd_ajax_float').length > 0){
			
				if ( scrollY > descripY && !fixedShare ) {
					$postShare.stop().css({
						position: 'fixed',
						top: 16
					});
				} else if ( scrollY < descripY && fixedShare ) {
					$postShare.css({
						position: 'absolute',
						top: descripY,
						marginLeft: pullX
					});
				}
				
			}
	
		});
	}
});</script><script type="text/javascript"> jQuery(document).ready(function($) {
	
		if($(window).width()> 790){ 
			$('#dd_ajax_float').show()
		}else{
			$('#dd_ajax_float').hide()
		}

		$(window).resize(function() { 
			
			if($(window).width()> 790){ 
				$('#dd_ajax_float').show()
			}else{
				$('#dd_ajax_float').hide()
			}
			
		}); 

	}); ;</script>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.computer-files.com/how-to-change-file-extensions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File extensions / file formats</title>
		<link>http://www.computer-files.com/file-extensions-file-formats.html</link>
		<comments>http://www.computer-files.com/file-extensions-file-formats.html#comments</comments>
		<pubDate>Thu, 10 Jan 2008 10:20:12 +0000</pubDate>
		<dc:creator>Computer Expert</dc:creator>
				<category><![CDATA[File extensions]]></category>
		<category><![CDATA[file extension]]></category>

		<guid isPermaLink="false">http://www.computer-files.com/2008/01/10/file-extensions-file-formats/</guid>
		<description><![CDATA[<p><img width="300" height="149" src="http://www.computer-files.com/wp-content/file-extension2-300x149.jpg" class="attachment-medium wp-post-image" alt="Multiple File Extension" title="file-extension2" /></p>Each file has an extension usually formed from three characters after the name of the file and a period (ex. filename.txt). Usually the operating system on a computer hides the extensions of the files for security reasons but it can be set to be viewable in case someone wants to see the extensions of the [...]]]></description>
			<content:encoded><![CDATA[<p><img width="300" height="149" src="http://www.computer-files.com/wp-content/file-extension2-300x149.jpg" class="attachment-medium wp-post-image" alt="Multiple File Extension" title="file-extension2" /></p>
<!-- google_ad_section_start -->
<p>Each file has an <strong>extension</strong> usually formed from three characters after the name of the file and a period (ex. filename.txt). Usually the operating system on a computer hides the extensions of the files for security reasons but it can be set to be viewable in case someone wants to see the extensions of the files. The file extension is associated with the program it can be accessed with, it simply tells what application is being used or edited with or what type of system file it is.</p>
<p style="margin: 0cm 0cm 0pt; text-align: justify" class="MsoNormal"><strong>A list of common file extensions:</strong></p>
<p><strong>ace</strong>&nbsp;&nbsp;&nbsp;&nbsp; Archive, compressed<br /> <strong>amr</strong>&nbsp;&nbsp;&nbsp;&nbsp; Compressed audio<br /> <strong>arj</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Archive, compressed<br /> <strong>asp</strong>&nbsp;&nbsp;&nbsp;&nbsp; ASP script, used on web pages<br /> <strong>avi</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Audio Video Interleave movie or video<br /> <strong>bak</strong>&nbsp;&nbsp;&nbsp;&nbsp; Backup<br /> <strong>bat</strong>&nbsp;&nbsp;&nbsp;&nbsp; Batch file (executable)<br /> <strong>bmp</strong>&nbsp;&nbsp;&nbsp; Windows Bitmap image<br /> <strong>cab</strong>&nbsp;&nbsp;&nbsp;&nbsp; Windows Cabinet Compressed Archive<br /> <strong>cdr</strong>&nbsp;&nbsp;&nbsp;&nbsp; CorelDRAW vector image<br /> <strong>css</strong>&nbsp;&nbsp;&nbsp;&nbsp; Cascading Style Sheets<br /> <strong>dat</strong>&nbsp;&nbsp;&nbsp;&nbsp; Text or binary data file<br /> <strong>dbf</strong>&nbsp;&nbsp;&nbsp;&nbsp; Database file<br /> <strong>doc</strong>&nbsp;&nbsp;&nbsp;&nbsp; Microsoft Office Word document<br /> <strong>exe</strong>&nbsp;&nbsp;&nbsp;&nbsp; Executable file<br /> <strong>gif</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Graphics interchange file format<br /> <strong>htm</strong>&nbsp;&nbsp;&nbsp;&nbsp; Web page &#8211; HTML file<br /> <strong>html</strong>&nbsp;&nbsp;&nbsp; Hypertext Markup Language &#8211; Web page file<br /> <strong>ico</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Icon file<br /> <strong>ini</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Text configuration file<br /> <strong>iso</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CD/DVD ISO binary image file<br /> <strong>jar</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Compressed archive file package for Java classes and data<br /> <strong>jpeg</strong>&nbsp;&nbsp;&nbsp; JPEG image, picture file format<br /> <strong>jpg</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; JPEG bitmap image file format<br /> <strong>js</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; JavaScript file<br /> <strong>lnk</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Windows Shortcut<br /> <strong>mdb</strong>&nbsp;&nbsp;&nbsp; Microsoft Access database<br /> <strong>mp3</strong>&nbsp;&nbsp;&nbsp; Compressed audio, music file<br /> <strong>mp4</strong>&nbsp;&nbsp;&nbsp; MPEG-4 file format<br /> <strong>mpg</strong>&nbsp;&nbsp;&nbsp; MPEG 1 video or movie file format<br /> <strong>msi</strong>&nbsp;&nbsp;&nbsp;&nbsp; Microsoft Windows Installer installation package file<br /> <strong>pdf</strong>&nbsp;&nbsp;&nbsp;&nbsp; Portable document format: Adobe Acrobat File<br /> <strong>php</strong>&nbsp;&nbsp;&nbsp;&nbsp; PHP script, page<br /> <strong>png</strong>&nbsp;&nbsp;&nbsp;&nbsp; Portable (Public) Network Graphic<br /> <strong>pps</strong>&nbsp;&nbsp;&nbsp;&nbsp; Microsoft PowerPoint Slideshow<br /> <strong>psd</strong>&nbsp;&nbsp;&nbsp;&nbsp; Adobe Photoshop graphics<br /> <strong>rar</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAR compressed archive &#8211; backup file<br /> <strong>rss</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Really Simple Syndication &#8211; RSS file format<br /> <strong>rtf</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Rich Text Format document<br /> <strong>swf</strong>&nbsp;&nbsp;&nbsp;&nbsp; ShockWave Flash, Animated vector format for the Internet<br /> <strong>sys</strong>&nbsp;&nbsp;&nbsp;&nbsp; System file<br /> <strong>tif</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Aldus Tagged Image File Format (TIFF) bitmap image<br /> <strong>tmp</strong>&nbsp;&nbsp;&nbsp;&nbsp; Temporary file<br /> <strong>txt</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Common text file<br /> <strong>vxd</strong>&nbsp;&nbsp;&nbsp;&nbsp; Microsoft Windows virtual device driver, 32 bit<br /> <strong>wav</strong>&nbsp;&nbsp;&nbsp; WAVe PCM Sound, standard Windows sound format<br /> <strong>xls</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Microsoft Office Excel spreadsheet<br /> <strong>xml</strong>&nbsp;&nbsp;&nbsp;&nbsp; XML document<br /> <strong>zip</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Compressed ZIP archive file and compressed folder</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.computer-files.com/file-extensions-file-formats.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

