safe(st) way rename a delphi Project - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T10:35:10Zhttp://stackoverflow.com/feeds/question/297592http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project3safe(st) way rename a delphi ProjectChristopher Chase2008-11-18T01:36:26Z2009-01-07T08:12:09Z
<p>Im sure this will be a simple one but have a project that started as a test.<br />
When it was created it was saved as "Project2.dpr"</p>
<p>Now the test is no longer a 'test', i would like to change the projects name to something more meaningful. </p>
<p>whats the best way to do this?</p>
<p>Any issues with just changing the file name and the Program line to the new name? i.e.</p>
<p>meaningful.dpr</p>
<pre><code>Program meaningful;
</code></pre>
<p>Note:Delphi 7 if it matters</p>
http://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project/297620#297620-4Answer by CyberShadow for safe(st) way rename a delphi ProjectCyberShadow2008-11-18T01:51:32Z2008-11-18T01:51:32Z<p>In a command prompt, cd to your Delphi project and type:</p>
<p><code>ren Project1.* meaningful.*</code></p>
<p>Since Delphi7 doesn't have file-name references in project settings, this should work just fine. The "Program" clause does nothing and its name doesn't affect anything (AFAIK), by the way.</p>
http://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project/297714#29771419Answer by François for safe(st) way rename a delphi ProjectFrançois2008-11-18T02:46:50Z2008-11-18T02:46:50Z<p>Just do "Save Project as" from the file menu in Delphi giving it the name you want and, later on when you feel like, remove the Project2.* files from your folder as they are not needed anymore.</p>
http://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project/298184#2981844Answer by Oliver Giesen for safe(st) way rename a delphi ProjectOliver Giesen2008-11-18T08:51:16Z2009-01-07T08:12:09Z<p>FYI: Starting with Delphi 8 you can simply right-click the project in the project manager and select "Rename" (or simply press F2). This has the benefit over the "Save As" approach that you don't end up with a copy.</p>
<p>(sorry, no Delphi 7 - thanks to Lars for the update)</p>