get appdata file path csharp

Code Example - get appdata file path csharp

                
                        Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
                    
                
 

get roaming folder csharp

                        
                                string roaming = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
                            
                        
 

Related code examples