get script directory csharp

Code Example - get script directory csharp

                
                        using System.IO;
string path = Directory.GetDirectoryName();
                    
                
 

csharp get script directory

                        
                                string appPath = System.IO.Path.GetDirectoryName(Application.ExecutablePath);
                            
                        
 

Related code examples