Click here to Skip to main content
15,892,927 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: dll files Pin
User 5924114-Aug-14 21:00
User 5924114-Aug-14 21:00 
GeneralRe: dll files PinPopular
Manfred Rudolf Bihy14-Aug-14 21:52
professionalManfred Rudolf Bihy14-Aug-14 21:52 
GeneralRe: dll files Pin
Asgard2514-Aug-14 22:58
professionalAsgard2514-Aug-14 22:58 
GeneralRe: dll files Pin
Rage14-Aug-14 23:40
professionalRage14-Aug-14 23:40 
GeneralRe: dll files Pin
Manfred Rudolf Bihy15-Aug-14 0:40
professionalManfred Rudolf Bihy15-Aug-14 0:40 
GeneralRe: dll files Pin
Bassam Abdul-Baki15-Aug-14 1:07
professionalBassam Abdul-Baki15-Aug-14 1:07 
GeneralRe: dll files Pin
Cristian Amarie14-Aug-14 21:57
Cristian Amarie14-Aug-14 21:57 
GeneralRe: dll files Pin
OriginalGriff14-Aug-14 22:11
mveOriginalGriff14-Aug-14 22:11 
Easy:
C#
string path = @"D:\Temp\";
string[] files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
foreach (string file in files)
    {
    string newPath = file.Substring(0, file.Length - Path.GetExtension(file).Length) + ".exe";
    if (file != newPath)
        {
        File.Move(file, newPath);
        }
    }

Mind you, you'll have to cope with the system files, and such like...
You looking for sympathy?
You'll find it in the dictionary, between sympathomimetic and sympatric
(Page 1788, if it helps)

GeneralRe: dll files Pin
Cristian Amarie14-Aug-14 22:20
Cristian Amarie14-Aug-14 22:20 
GeneralRe: dll files Pin
harold aptroot14-Aug-14 22:53
harold aptroot14-Aug-14 22:53 
GeneralRe: dll files Pin
Rage14-Aug-14 23:38
professionalRage14-Aug-14 23:38 
GeneralRe: dll files Pin
Christian Graus15-Aug-14 12:50
protectorChristian Graus15-Aug-14 12:50 
GeneralRe: dll files Pin
JMK-NI14-Aug-14 22:11
professionalJMK-NI14-Aug-14 22:11 
GeneralRe: dll files Pin
#realJSOP15-Aug-14 2:06
mve#realJSOP15-Aug-14 2:06 
GeneralRe: dll files Pin
MarkRHolbrook15-Aug-14 4:08
MarkRHolbrook15-Aug-14 4:08 
GeneralT-shirt Idea Pin
B. Clay Shannon14-Aug-14 13:34
professionalB. Clay Shannon14-Aug-14 13:34 
GeneralRe: T-shirt Idea Pin
_Damian S_14-Aug-14 13:46
professional_Damian S_14-Aug-14 13:46 
GeneralRe: T-shirt Idea Pin
B. Clay Shannon14-Aug-14 13:57
professionalB. Clay Shannon14-Aug-14 13:57 
GeneralRe: T-shirt Idea Pin
PIEBALDconsult14-Aug-14 13:48
mvePIEBALDconsult14-Aug-14 13:48 
GeneralRe: T-shirt Idea Pin
B. Clay Shannon14-Aug-14 13:55
professionalB. Clay Shannon14-Aug-14 13:55 
GeneralRe: T-shirt Idea Pin
Mike Hankey14-Aug-14 14:55
mveMike Hankey14-Aug-14 14:55 
GeneralRe: T-shirt Idea Pin
Christian Graus14-Aug-14 14:03
protectorChristian Graus14-Aug-14 14:03 
GeneralRe: T-shirt Idea Pin
Gary Wheeler15-Aug-14 0:28
Gary Wheeler15-Aug-14 0:28 
GeneralFlight control Pin
Rage14-Aug-14 13:14
professionalRage14-Aug-14 13:14 
GeneralRe: Flight control Pin
PIEBALDconsult14-Aug-14 14:32
mvePIEBALDconsult14-Aug-14 14:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.