<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://xceed.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'FTP Folder'</title><link>http://xceed.com/CS/search/SearchResults.aspx?o=DateDescending&amp;tag=FTP+Folder&amp;orTags=0</link><description>Search results matching tag 'FTP Folder'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Debug Build: 61120.2)</generator><item><title>How to rename a folder on a FTP Server</title><link>http://xceed.com/CS/forums/post/28306.aspx</link><pubDate>Tue, 28 Oct 2008 14:04:56 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28306</guid><dc:creator>Xceed admin</dc:creator><description>&lt;body&gt;If you use the FtpConnection class, which means you use the FtpFolder class, then you can get an instance of the folder that you want, and then simply use the Name property, which will rename the folder on the ftp server.&lt;br/&gt;&lt;br/&gt;      FtpConnection ftpConn = new FtpConnection( "yourserver", "username", "password" );&lt;br/&gt;      AbstractFolder folder = new FtpFolder( ftpConn, @"\folderToRename\" );&lt;br/&gt;      folder.Name = "folderNewName";&lt;br/&gt;&lt;/body&gt;</description></item></channel></rss>