<?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>Python: iterate (and read) all files in a directory (folder)</title> <atom:link href="http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html/feed" rel="self" type="application/rss+xml" /><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html</link> <description>Tiny bits of bioinformatics, [web-]programming etc</description> <lastBuildDate>Sat, 19 May 2012 15:27:39 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-140010</link> <dc:creator>Pim</dc:creator> <pubDate>Tue, 24 Apr 2012 06:52:18 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-140010</guid> <description>@adam
This should work:
if filename[0] == &#039;.&#039;: # if the first character is a dot
continue           # skip the file</description> <content:encoded><![CDATA[<p>@adam</p><p>This should work:</p><p>if filename[0] == &#8216;.&#8217;: # if the first character is a dot<br
/> continue           # skip the file</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139951</link> <dc:creator>VS</dc:creator> <pubDate>Mon, 16 Apr 2012 11:51:56 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139951</guid> <description>Hey i want to change the file path dynamically. Eg: &quot;/cygdrive/d/Python_Study/Snehal/xyz/1.xml&quot;
here xyz may be anything like default, config etc.. i want to read this path depending on xyz value. How can i do that???</description> <content:encoded><![CDATA[<p>Hey i want to change the file path dynamically. Eg: &#8220;/cygdrive/d/Python_Study/Snehal/xyz/1.xml&#8221;<br
/> here xyz may be anything like default, config etc.. i want to read this path depending on xyz value. How can i do that???</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139760</link> <dc:creator>Bogdan</dc:creator> <pubDate>Wed, 11 Apr 2012 21:40:23 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139760</guid> <description>I guess fdupes could be compiled/run in cygwin.
There are tons of similar programs for windows, and some are even good enough, but I&#039;m not up-to-date on that software - so cannot advise.
You could write the required python script by, e.g., first creating two dicts of {filename: filesize}, and then comparing them to find identical filesizes (and yield the two filenames). This is a suboptimal approach, but that probably doesn&#039;t matter for low numbers of files; for higher numbers, you would want a different approach. (One more suboptimal idea, but slightly better, would be to populate the 1st dict with {size:name}, and then iterate over the files in the 2nd dir, checking for &quot;size in dict&quot;.)</description> <content:encoded><![CDATA[<p>I guess fdupes could be compiled/run in cygwin.</p><p>There are tons of similar programs for windows, and some are even good enough, but I&#8217;m not up-to-date on that software &#8211; so cannot advise.</p><p>You could write the required python script by, e.g., first creating two dicts of {filename: filesize}, and then comparing them to find identical filesizes (and yield the two filenames). This is a suboptimal approach, but that probably doesn&#8217;t matter for low numbers of files; for higher numbers, you would want a different approach. (One more suboptimal idea, but slightly better, would be to populate the 1st dict with {size:name}, and then iterate over the files in the 2nd dir, checking for &#8220;size in dict&#8221;.)</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139758</link> <dc:creator>Paal</dc:creator> <pubDate>Wed, 11 Apr 2012 11:41:59 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139758</guid> <description>@Bogdan, Yeah, but I&#039;m on a windows platform at work. Know of any similar program for windows? Or a python script</description> <content:encoded><![CDATA[<p>@Bogdan, Yeah, but I&#8217;m on a windows platform at work. Know of any similar program for windows? Or a python script</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139750</link> <dc:creator>Bogdan</dc:creator> <pubDate>Tue, 10 Apr 2012 18:00:07 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139750</guid> <description>@Vaishu, you could wrap the conversion to float() into a try..except block, and thus separate purely-numeric values from alphanumeric.
@Paal, you could use a program like &#039;fdupes&#039;, which does exactly what you want - de-duplicates the contents of two arbitrary directories.</description> <content:encoded><![CDATA[<p>@Vaishu, you could wrap the conversion to float() into a try..except block, and thus separate purely-numeric values from alphanumeric.</p><p>@Paal, you could use a program like &#8216;fdupes&#8217;, which does exactly what you want &#8211; de-duplicates the contents of two arbitrary directories.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139748</link> <dc:creator>Paal</dc:creator> <pubDate>Tue, 10 Apr 2012 13:08:21 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139748</guid> <description>Hey, I&#039;m having a different problem.
I have two or more folders with lots of files in them. Both folders contain some files that are exactly the same, but the files have different names. I want to use a python script to matches files in these two folders by size. Cause When the size of the file is the same, I think it&#039;s a high enough possibillity that the files are the same.
The best script would merge these to folders together and delete duplicates, based on name or size, or name and size.
Anyone who know how to write one of these scripts?
That would be really helpfull!
sorry bout my bad english.</description> <content:encoded><![CDATA[<p>Hey, I&#8217;m having a different problem.<br
/> I have two or more folders with lots of files in them. Both folders contain some files that are exactly the same, but the files have different names. I want to use a python script to matches files in these two folders by size. Cause When the size of the file is the same, I think it&#8217;s a high enough possibillity that the files are the same.<br
/> The best script would merge these to folders together and delete duplicates, based on name or size, or name and size.</p><p>Anyone who know how to write one of these scripts?</p><p>That would be really helpfull!</p><p>sorry bout my bad english.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139716</link> <dc:creator>vaishu</dc:creator> <pubDate>Wed, 04 Apr 2012 11:29:08 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139716</guid> <description>sorry,
contents of seq.txt is
9.45
9SEQ
6.346
4CGF
2.5632
3RES
8.1452
2HAB
and i want results of only floating points,
i.e)
2.5632
6.346
8.1452
9.45</description> <content:encoded><![CDATA[<p>sorry,<br
/> contents of seq.txt is<br
/> 9.45<br
/> 9SEQ<br
/> 6.346<br
/> 4CGF<br
/> 2.5632<br
/> 3RES<br
/> 8.1452<br
/> 2HAB<br
/> and i want results of only floating points,<br
/> i.e)<br
/> 2.5632<br
/> 6.346<br
/> 8.1452<br
/> 9.45</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139701</link> <dc:creator>vaishu</dc:creator> <pubDate>Mon, 02 Apr 2012 06:13:10 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139701</guid> <description>hELLO,
Python Comments used for arranging floating points in ascending order
For ex..,
In Drive=C:/ Folder=r Textfile=seq.txt
Contents of seq.txt=
9.45
6.346
2.5632
8.1452
My aim is i want result as
2.5632
6.346
8.1452
9.45
what python code should be used for such type of process</description> <content:encoded><![CDATA[<p>hELLO,<br
/> Python Comments used for arranging floating points in ascending order<br
/> For ex..,<br
/> In Drive=C:/ Folder=r Textfile=seq.txt<br
/> Contents of seq.txt=<br
/> 9.45<br
/> 6.346<br
/> 2.5632<br
/> 8.1452<br
/> My aim is i want result as<br
/> 2.5632<br
/> 6.346<br
/> 8.1452<br
/> 9.45<br
/> what python code should be used for such type of process</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139558</link> <dc:creator>vaishu</dc:creator> <pubDate>Mon, 26 Mar 2012 04:48:32 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139558</guid> <description>Hello sir,
Thank you very much to Bogdan and Adam.</description> <content:encoded><![CDATA[<p>Hello sir,<br
/> Thank you very much to Bogdan and Adam.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139530</link> <dc:creator>Bogdan</dc:creator> <pubDate>Sat, 24 Mar 2012 17:52:26 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139530</guid> <description>@Adam, I&#039;m not currently aware of such a method. If it exists, then it should be either somewhere in os.path, or in collections. Please report back if you find it :)
@Priya, you should probably use http://stackoverflow.com/ or http://codereview.stackexchange.com/ to post your code and have volunteers help you with it.</description> <content:encoded><![CDATA[<p>@Adam, I&#8217;m not currently aware of such a method. If it exists, then it should be either somewhere in os.path, or in collections. Please report back if you find it <img
src='http://bogdan.org.ua/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>@Priya, you should probably use <a
href="http://stackoverflow.com/" rel="nofollow">http://stackoverflow.com/</a> or <a
href="http://codereview.stackexchange.com/" rel="nofollow">http://codereview.stackexchange.com/</a> to post your code and have volunteers help you with it.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139504</link> <dc:creator>priya</dc:creator> <pubDate>Fri, 23 Mar 2012 06:00:40 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139504</guid> <description>Hiiii
pls help me to do this simple program:
Drive:F:/
folder:X
files:x1.txt,x2.txt,x3.txt,x4.txt,x5.txt(5 seperate files)
I have to read all these files quickly, so i had generated a list as list.txt=[&#039;F:/X/x1.txt&#039;,&#039;F:/X/x2.txt&#039;,F:/X/x3.txt&#039;,F:/X/x4.txt&#039;,F:/X/x5.txt&#039;]
now i have to read list.txt file and i want to generate listres.txt file by &#039;w&#039;
where
listres.txt=[&#039;F:/X/x1res.txt&#039;,&#039;F:/X/x2res.txt&#039;,F:/X/x3res.txt&#039;,F:/X/x4res.txt&#039;,F:/X/x5res.txt&#039;]
i expect to write result of X1.txt file in X1res.txt alone(X2.txt file in X2res.txt file)  but unfortunately it is writing result of all x1+x2+x3+x4+x5 files in x1res files and same result in x2res files how to seperate it?</description> <content:encoded><![CDATA[<p>Hiiii<br
/> pls help me to do this simple program:<br
/> Drive:F:/<br
/> folder:X<br
/> files:x1.txt,x2.txt,x3.txt,x4.txt,x5.txt(5 seperate files)</p><p>I have to read all these files quickly, so i had generated a list as list.txt=['F:/X/x1.txt','F:/X/x2.txt',F:/X/x3.txt',F:/X/x4.txt',F:/X/x5.txt']</p><p>now i have to read list.txt file and i want to generate listres.txt file by &#8216;w&#8217;<br
/> where<br
/> listres.txt=['F:/X/x1res.txt','F:/X/x2res.txt',F:/X/x3res.txt',F:/X/x4res.txt',F:/X/x5res.txt']</p><p>i expect to write result of X1.txt file in X1res.txt alone(X2.txt file in X2res.txt file)  but unfortunately it is writing result of all x1+x2+x3+x4+x5 files in x1res files and same result in x2res files how to seperate it?</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139500</link> <dc:creator>Adam</dc:creator> <pubDate>Fri, 23 Mar 2012 03:01:25 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139500</guid> <description>Thank @Bogdan. That definitely helps, but there&#039;s no way to systematically look for only visible files?</description> <content:encoded><![CDATA[<p>Thank @Bogdan. That definitely helps, but there&#8217;s no way to systematically look for only visible files?</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139492</link> <dc:creator>Bogdan</dc:creator> <pubDate>Thu, 22 Mar 2012 21:21:07 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139492</guid> <description>@Vaishu: just use the script with a proper mask, like *.pdb. Maybe also make it recursive (see comment 10), if you have PDB files in sub-directories.
@Adam: just use the proper filename mask. For example, *.* should not include any files which start with a dot (like .DS_Store). Another way is to check the filename in Python, e.g.
&lt;pre&gt;
if filename == &#039;.DS_Store&#039;:
continue  # skip the file
&lt;/pre&gt; </description> <content:encoded><![CDATA[<p>@Vaishu: just use the script with a proper mask, like *.pdb. Maybe also make it recursive (see comment 10), if you have PDB files in sub-directories.</p><p>@Adam: just use the proper filename mask. For example, *.* should not include any files which start with a dot (like .DS_Store). Another way is to check the filename in Python, e.g.</p><pre>
if filename == '.DS_Store':
    continue  # skip the file
</pre>]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139482</link> <dc:creator>Adam</dc:creator> <pubDate>Thu, 22 Mar 2012 15:55:22 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139482</guid> <description>First off, this is great! Can&#039;t begin to tell you how helpful it is. One question: Is there a way to have it loop through only visible files? For example, in every folder, Mac OSX creates a .DS_Store file. When I iterate through, it picks up this file, which gets included in any subsequent arrays, lists, etc.
Thanks</description> <content:encoded><![CDATA[<p>First off, this is great! Can&#8217;t begin to tell you how helpful it is. One question: Is there a way to have it loop through only visible files? For example, in every folder, Mac OSX creates a .DS_Store file. When I iterate through, it picks up this file, which gets included in any subsequent arrays, lists, etc.</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139397</link> <dc:creator>vaishu</dc:creator> <pubDate>Fri, 16 Mar 2012 11:07:00 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-139397</guid> <description>Is there a way to open and read many PDB files(eg:1ASD.pdb,2sew.pdb,5res.pdb) from a folder(eg:protein) present in drive(eg:E:/)automatically without entering each name of the PDB file? bcos it is upto 14,000 PDB files.</description> <content:encoded><![CDATA[<p>Is there a way to open and read many PDB files(eg:1ASD.pdb,2sew.pdb,5res.pdb) from a folder(eg:protein) present in drive(eg:E:/)automatically without entering each name of the PDB file? bcos it is upto 14,000 PDB files.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-136417</link> <dc:creator>born</dc:creator> <pubDate>Thu, 13 Oct 2011 12:40:26 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-136417</guid> <description>hi ...
I have been messing around with a python program to browse through images in a directory and display it in a canvas.can anybody help??</description> <content:encoded><![CDATA[<p>hi &#8230;<br
/> I have been messing around with a python program to browse through images in a directory and display it in a canvas.can anybody help??</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-136150</link> <dc:creator>toto</dc:creator> <pubDate>Wed, 14 Sep 2011 09:28:56 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-136150</guid> <description>thank you very much for your explaining. I get a problem when try to list file or directory in Python. You solve my problem :)</description> <content:encoded><![CDATA[<p>thank you very much for your explaining. I get a problem when try to list file or directory in Python. You solve my problem <img
src='http://bogdan.org.ua/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-135820</link> <dc:creator>ablaze</dc:creator> <pubDate>Wed, 10 Aug 2011 12:54:24 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-135820</guid> <description>Hi...
I am working in ubuntu. I have a bunch of commands (say 10 commands like cmd1, cmd2, cmd3..............cmd10)
I want to write a python script, which can achive the following:
It should traverse through the directory structure and apply a command at particular directory path.
The location and the commands are already known to me.
/local/mnt/myspace/sample1$ cmd1
/local/mnt/myspace/sample2$ cmd2
/local/mnt/myspace$ cmd3
/local/mnt$cmd4
/local/mnt/myspace/sample9$ cmd 8
/local/mnt/myspace/sample3$ dmd10
can someone please provide the script as I am not event a beginner in python.</description> <content:encoded><![CDATA[<p>Hi&#8230;<br
/> I am working in ubuntu. I have a bunch of commands (say 10 commands like cmd1, cmd2, cmd3&#8230;&#8230;&#8230;&#8230;..cmd10)<br
/> I want to write a python script, which can achive the following:</p><p>It should traverse through the directory structure and apply a command at particular directory path.<br
/> The location and the commands are already known to me.</p><p>/local/mnt/myspace/sample1$ cmd1<br
/> /local/mnt/myspace/sample2$ cmd2<br
/> /local/mnt/myspace$ cmd3<br
/> /local/mnt$cmd4<br
/> /local/mnt/myspace/sample9$ cmd 8<br
/> /local/mnt/myspace/sample3$ dmd10</p><p>can someone please provide the script as I am not event a beginner in python.</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-135000</link> <dc:creator>Stefan</dc:creator> <pubDate>Fri, 13 May 2011 12:20:47 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-135000</guid> <description>I found it:
dirList=os.listdir(path)
dirList.sort()
for fname in dirList:
print( fname)</description> <content:encoded><![CDATA[<p>I found it:</p><p>dirList=os.listdir(path)</p><p>dirList.sort()</p><p>for fname in dirList:<br
/> print( fname)</p> ]]></content:encoded> </item> <item><title>Python: iterate (and read) all files in a directory (folder)</title><link>http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-134999</link> <dc:creator>Stefan</dc:creator> <pubDate>Fri, 13 May 2011 11:51:45 +0000</pubDate> <guid
isPermaLink="false">http://bogdan.org.ua/2007/08/12/python-iterate-and-read-all-files-in-a-directory-folder.html#comment-134999</guid> <description>Is there a possibility to list the files in order, by name ?
For example :
/path/file01.txt
/path/file02.txt
..............
If I use the codes you presented here i get scrambled order</description> <content:encoded><![CDATA[<p>Is there a possibility to list the files in order, by name ?<br
/> For example :<br
/> /path/file01.txt<br
/> /path/file02.txt<br
/> &#8230;&#8230;&#8230;&#8230;..</p><p>If I use the codes you presented here i get scrambled order</p> ]]></content:encoded> </item> </channel> </rss>
