delete content from file csharp

Code Example - delete content from file csharp

                
                        File.Delete("path");
                    
                
 

csharp how to delete a file

                        
                                File.Delete(@"C:\Temp\Data\Authors.txt");
                            
                        
 

Related code examples