Answer the question
In order to leave comments, you need to log in
How to delete folders using c#?
I have a form with a button. I need to implement deletion on click of a button in a specific path.
But since the form will be opened from different accounts, the path will be different.
For example:
We launch the form where the user test1 is logged in, everything is deleted from C:\Users
\
test1 account test*, where the asterisk is any value.
But I don't know how to implement it. (
Answer the question
In order to leave comments, you need to log in
c# directory.delete
or https://docs.microsoft.com/ru-ru/dotnet/api/system...
string userProfilePath = Environment.ExpandEnvironmentVariables("%USERPROFILE%");
string directoryToDelete = Path.Combine(userProfilePath, "AppData", "Local", "MyApplicationFolder");
DirectoryInfo di = new DirectoryInfo(directoryToDelete);
di.GetFiles().ToList().ForEach(f => f.Delete());
di.GetDirectories().ToList().ForEach(d => d.Delete());
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question