slet fil til recycle bin
Vil gerne slette fil til recycle bin.Går frem efter følgede eksempel.
http://www.daveamenta.com/2008-05/c-delete-a-file-to-the-recycle-bin/ :
using Microsoft.VisualBasic;
string path = @"c:\myfile.txt";
FileIO.FileSystem.DeleteDirectory(path, FileIO.UIOption.OnlyErrorDialogs, .RecycleOption.SendToRecycleBin);
Imidlertid genkendes "FileIO" ikke.
Hvad kan årsagen være ( jeg har tilføjet using Microsoft.VisualBasic)?