| 1234567891011121314151617 |
- using System;
- using System.IO;
- namespace MyClasses
- {
- public class FileProcess
- {
- public bool FileExists(string fileName)
- {
- if (string.IsNullOrEmpty(fileName))
- {
- throw new ArgumentNullException("filename");
- }
- return File.Exists(fileName);
- }
- }
- }
|