namespace Stream; using System.IO; public class Stream { public static bool ExistFile(string path) { return File.Exists(path); } }