I am trying to get a list of all files in a specific xbox directory as shown below, however I get a 'System.NotSupportedException' - Additional information: The given path's format is not supported.
var path = @"XE:\MyDirectory";
var files = Directory.GetFiles(path);
Does anyone know a way around it? Thanks