10 lines
151 B
C#
10 lines
151 B
C#
namespace Stream;
|
|
using System.IO;
|
|
|
|
public class Stream
|
|
{
|
|
public static bool ExistFile(string path)
|
|
{
|
|
return File.Exists(path);
|
|
}
|
|
} |