Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

How to use C# to open windows explorer in “select/open file mode

 System.Diagnostics.Process p = new System.Diagnostics.Process();
 p.StartInfo = new System.Diagnostics.ProcessStartInfo("explorer.exe");
 p.StartInfo.Arguments = "select";
 p.Start();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #open #windows #explorer #file #mode
ADD COMMENT
Topic
Name
7+1 =