Click here to Skip to main content
15,906,455 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi sir/madam can i know how to run .pde file
Posted

1 solution

There are a whole bunch of programs which use the extension "PDE": Arduino use one, PowerDesk also, and there are others.

So "run .pde" file is not a single process, but instead is controlled by teh software installed on the PC.

However, this may work:
C#
Process.Start(@"D:\Temp\MyFile.pde");
If an application is installed which "knows about" files with the extension "PDE" then it should run and open the file. If not, then you're pretty much on your own - you will need to examine the file, and where you got it from in order to work out just what to do with it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900