Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~123 People Reached
Favorite Forums
Member Avatar for apostlos_

I am trying not to delete internet shortcuts using c# the code is like this [CODE]static void Main(string[] args) { string path = @"C:\KOINA_ARXEIA"; string[] folders; folders = System.IO.Directory.GetDirectories(path, "*", System.IO.SearchOption.AllDirectories); foreach (string folder in folders) { Console.WriteLine("Getting files for Directory:{0}\n", folder); string[] files = System.IO.Directory.GetFiles(folder); foreach (string file in …

Member Avatar for DdoubleD
-1
123