main
 1namespace Gorilla.Commons.Infrastructure.FileSystem
 2{
 3    public interface File
 4    {
 5        string path { get; }
 6        bool does_the_file_exist();
 7        void copy_to(string path);
 8        void delete();
 9    }
10}