<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Batch Rename Filenames</title>
	<atom:link href="http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/</link>
	<description>Online Tips For Tech Users, Bloggers and Designers</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:14:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: SWhite</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-506809</link>
		<dc:creator>SWhite</dc:creator>
		<pubDate>Mon, 01 Mar 2010 16:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-506809</guid>
		<description>Great post.  I used Adobe Bridge and it worked very well.  I liked the options it gave you for setting the file name.  I notice that if you have full Acrobat, you can use Batch processing to rename as well, but with fewer options than Bridge.</description>
		<content:encoded><![CDATA[<p>Great post.  I used Adobe Bridge and it worked very well.  I liked the options it gave you for setting the file name.  I notice that if you have full Acrobat, you can use Batch processing to rename as well, but with fewer options than Bridge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SenHu</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-504513</link>
		<dc:creator>SenHu</dc:creator>
		<pubDate>Thu, 04 Feb 2010 16:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-504513</guid>
		<description>I think the equivalent to UNIX shell on windows is biterscripting. A script that will replace chars 2-4 of every *.txt file found in folder C:/test (and its subfolder). The chars 2-4 will be replaced by &quot;IFeelLucky&quot; (as example).

var str list, file, name, newname
lf -r -n &quot;*.txt&quot; &quot;C:/test&quot; &gt; $list
while ($list  &quot;&quot;)
do
    lex &quot;1&quot; $list &gt; $file ; stex -p &quot;^/^l[&quot; $file &gt; $name
    chex -p &quot;]2&quot; $name &gt; $newname
    set $newname = $newname + &quot;IFeelLucky&quot;
    chex -p &quot;4[&quot; $name &gt;&gt; $newname
    system rename $file $newname
done



Use double quotes if any of the involved file or folder names contain spaces - see the help page for the chex command at http://www.biterscripting.com/helppages/chex.html .</description>
		<content:encoded><![CDATA[<p>I think the equivalent to UNIX shell on windows is biterscripting. A script that will replace chars 2-4 of every *.txt file found in folder C:/test (and its subfolder). The chars 2-4 will be replaced by &#8220;IFeelLucky&#8221; (as example).</p>
<p>var str list, file, name, newname<br />
lf -r -n &#8220;*.txt&#8221; &#8220;C:/test&#8221; &gt; $list<br />
while ($list  &#8220;&#8221;)<br />
do<br />
    lex &#8220;1&#8243; $list &gt; $file ; stex -p &#8220;^/^l[" $file &gt; $name<br />
    chex -p "]2&#8243; $name &gt; $newname<br />
    set $newname = $newname + &#8220;IFeelLucky&#8221;<br />
    chex -p &#8220;4[&#8221; $name &gt;&gt; $newname<br />
    system rename $file $newname<br />
done</p>
<p>Use double quotes if any of the involved file or folder names contain spaces &#8211; see the help page for the chex command at <a href="http://www.biterscripting.com/helppages/chex.html" rel="nofollow">http://www.biterscripting.com/helppages/chex.html</a> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-503121</link>
		<dc:creator>Saeed</dc:creator>
		<pubDate>Tue, 26 Jan 2010 13:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-503121</guid>
		<description>What if the files are not in the same directory? I want to replace a portion of the file  name with another string. 

In unix, one would use grep/egrep to do the job. What is the equivalent utility in Windows?</description>
		<content:encoded><![CDATA[<p>What if the files are not in the same directory? I want to replace a portion of the file  name with another string. </p>
<p>In unix, one would use grep/egrep to do the <a href="http://www.hongkiat.com/blog/out/freelancer" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.hongkiat.com/blog/out/freelancer';return true;" onmouseout="self.status=''">job</a>. What is the equivalent utility in Windows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naomi</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-502773</link>
		<dc:creator>Naomi</dc:creator>
		<pubDate>Thu, 21 Jan 2010 09:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-502773</guid>
		<description>Rename Now a very easy to use MAC computers in bulk to change the file name of the software.

Rename Now can help you organize all the files very neat! And very easy to use!

“Rename Now ” software from MarkMark</description>
		<content:encoded><![CDATA[<p>Rename Now a very easy to use MAC computers in bulk to change the file name of the software.</p>
<p>Rename Now can help you organize all the files very neat! And very easy to use!</p>
<p>“Rename Now ” software from MarkMark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mazhar</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-414500</link>
		<dc:creator>Mazhar</dc:creator>
		<pubDate>Mon, 13 Jul 2009 08:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-414500</guid>
		<description>wow, very easy way to change file names. what a key</description>
		<content:encoded><![CDATA[<p>wow, very easy way to change file names. what a key</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RoderidkT</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-333894</link>
		<dc:creator>RoderidkT</dc:creator>
		<pubDate>Sun, 08 Mar 2009 08:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-333894</guid>
		<description>Take a look at the excellent freeware FastStone Image Viewer. It has a powerful batch renamer function. I use it together with Picasa but make sure that Picasa is also open when you use FastStone to rename as otherwise Picasa will not modify its .ini file and your Picasa edits will not be applied to original. 

FastStone is also great for on screen image comaprisions.

I now only use Photoshop for those few photos that warrent the time being spent on them.</description>
		<content:encoded><![CDATA[<p>Take a look at the excellent freeware FastStone Image Viewer. It has a powerful batch renamer function. I use it together with Picasa but make sure that Picasa is also open when you use FastStone to rename as otherwise Picasa will not modify its .ini file and your Picasa edits will not be applied to original. </p>
<p>FastStone is also great for on screen image comaprisions.</p>
<p>I now only use Photoshop for those few <a href="http://www.hongkiat.com/blog/more/photography-manipulation" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.hongkiat.com/blog/more/photography-manipulation';return true;" onmouseout="self.status=''">photos</a> that warrent the time being spent on them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leafnode</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-269533</link>
		<dc:creator>Leafnode</dc:creator>
		<pubDate>Fri, 21 Nov 2008 08:18:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-269533</guid>
		<description>Total Commander has great multi-rename tool - can be simple or very powerful (has regex option).</description>
		<content:encoded><![CDATA[<p>Total Commander has great multi-rename tool &#8211; can be simple or very powerful (has regex option).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronano</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-193094</link>
		<dc:creator>Ronano</dc:creator>
		<pubDate>Tue, 01 Jul 2008 09:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-193094</guid>
		<description>I used &lt;a href=&quot;http://sharewarecheap.com/Quick-File-Renamer_software_2998.html&quot; rel=&quot;nofollow&quot;&gt;Quick File Renamer&lt;/a&gt;. Because it can be used in VISTA. And it&#039;s really quick. I like it very much.</description>
		<content:encoded><![CDATA[<p>I used <a href="http://sharewarecheap.com/Quick-File-Renamer_software_2998.html" rel="nofollow">Quick File Renamer</a>. Because it can be used in VISTA. And it&#8217;s really quick. I like it very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doom2</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-192515</link>
		<dc:creator>doom2</dc:creator>
		<pubDate>Sun, 29 Jun 2008 09:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-192515</guid>
		<description>First one...  What a hidden gem!!!</description>
		<content:encoded><![CDATA[<p>First one&#8230;  What a hidden gem!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fulmar2</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-87063</link>
		<dc:creator>fulmar2</dc:creator>
		<pubDate>Wed, 15 Aug 2007 08:29:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-87063</guid>
		<description>Another way to rename files (at least on the mac) is to use this nifty &lt;a href=&quot;http://gotoes.org/sales/Batch_File_Rename/index.htm&quot; rel=&quot;nofollow&quot;&gt;Batch File Renamer&lt;/a&gt; It&#039;s quick and easy</description>
		<content:encoded><![CDATA[<p>Another way to rename files (at least on the mac) is to use this nifty <a href="http://gotoes.org/sales/Batch_File_Rename/index.htm" rel="nofollow">Batch File Renamer</a> It&#8217;s quick and easy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sgsfd</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-24955</link>
		<dc:creator>sgsfd</dc:creator>
		<pubDate>Wed, 11 Apr 2007 05:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-24955</guid>
		<description>move file to mac, rename using automator, move files back to pc.</description>
		<content:encoded><![CDATA[<p>move file to mac, rename using automator, move files back to pc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Korayem</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-5719</link>
		<dc:creator>Korayem</dc:creator>
		<pubDate>Sun, 04 Mar 2007 11:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-5719</guid>
		<description>Why don&#039;t u use REGEX with any AWK under windows.</description>
		<content:encoded><![CDATA[<p>Why don&#8217;t u use REGEX with any AWK under windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: earl-ku</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-5171</link>
		<dc:creator>earl-ku</dc:creator>
		<pubDate>Tue, 27 Feb 2007 21:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-5171</guid>
		<description>acdsee is the best in renaming, u get to browse the folders, then rename files in them ... ITS THE BEST!</description>
		<content:encoded><![CDATA[<p>acdsee is the best in renaming, u get to browse the folders, then rename files in them &#8230; ITS THE BEST!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CincauHangus</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-4885</link>
		<dc:creator>CincauHangus</dc:creator>
		<pubDate>Mon, 26 Feb 2007 10:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-4885</guid>
		<description>there&#039;s microsoft picture manager, comes bundled with any office suite. only works for images.

then there&#039;s faststone image resizer, can use for batch renaming as well. i think it&#039;s also limited to photos. much more customisable compared to microsoft picture manager, and it&#039;s free.</description>
		<content:encoded><![CDATA[<p>there&#8217;s microsoft picture manager, comes bundled with any office suite. only works for images.</p>
<p>then there&#8217;s faststone image resizer, can use for batch renaming as well. i think it&#8217;s also limited to <a href="http://www.hongkiat.com/blog/more/photography-manipulation" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.hongkiat.com/blog/more/photography-manipulation';return true;" onmouseout="self.status=''">photos</a>. much more customisable compared to microsoft picture manager, and it&#8217;s free.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cristian</title>
		<link>http://www.hongkiat.com/blog/3-ways-to-batch-rename-files/comment-page-1/#comment-4884</link>
		<dc:creator>Cristian</dc:creator>
		<pubDate>Mon, 26 Feb 2007 09:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.hongkiat.com/blog/2007/02/26/3-ways-to-batch-rename-files/#comment-4884</guid>
		<description>Try Fileaze (http://www.fileaze.com/): does that and tons of other batch operations for a few bucks!</description>
		<content:encoded><![CDATA[<p>Try Fileaze (<a href="http://www.fileaze.com/" rel="nofollow">http://www.fileaze.com/</a>): does that and tons of other batch operations for a few bucks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.307 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-06 04:01:33 -->

