safe(st) way rename a delphi Project - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T10:35:10Z http://stackoverflow.com/feeds/question/297592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project 3 safe(st) way rename a delphi Project Christopher Chase 2008-11-18T01:36:26Z 2009-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 -4 Answer by CyberShadow for safe(st) way rename a delphi Project CyberShadow 2008-11-18T01:51:32Z 2008-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#297714 19 Answer by François for safe(st) way rename a delphi Project François 2008-11-18T02:46:50Z 2008-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#298184 4 Answer by Oliver Giesen for safe(st) way rename a delphi Project Oliver Giesen 2008-11-18T08:51:16Z 2009-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>