A
A
Artem Kiryanov2019-03-04 19:12:40
C++ / C#
Artem Kiryanov, 2019-03-04 19:12:40

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

2 answer(s)
#
#, 2019-03-04
@hacker342

c# directory.delete
or https://docs.microsoft.com/ru-ru/dotnet/api/system...

I
Ivan Arxont, 2019-03-09
@arxont

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 question

Ask a Question

731 491 924 answers to any question