Example #1
0
 public static IEnumerable <string> ResolveFilePaths(IEnumerable <string> filePaths)
 {
     // Only perform Mac file reference resoltion when the string starts with the expected token
     return(filePaths.Select(path => !path.StartsWith("/.file") ? path : FileDialogCreatorPlugin.ResolveFilePath(path)));
 }