I am trying to move a file but I can only get it working when its to a special folder and not a folder within a special folder.
In case I would like to move it to a folder call "i" located within my documents:
foreach (string filename in Directory.GetFiles(MainPath))
{
var info = new FileInfo(filename);
if (info.Length < 1000000)
{
File.Move(filename, System.IO.Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),info.Name));
}
}