I am trying to create some files using fsutil, but no files are getting created with the following loop, neither is an error getting generated, any suggestions?
foreach (string extension in extensions) { Process.Start("fsutil", @"file createnew e:\attachments\" + DateTime.Now.ToString() + extension); }