I need to create a windows application in exe format. When i click the exe file, it must create a new folder with the name welcome in desktop.
How could i acheive this through coding in the windows application.
static void Main(string[] args) { string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); System.IO.Directory.CreateDirectory(desktopPath + "\\test"); }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.