Ejemplo n.º 1
0
        /*
         * A function which gets a path to use for changing permissions from the user
         * and sets it as the passed in wrapper's path.
         */
        public void setDir(FluentWrapper wrapper)
        {
            Console.WriteLine("\nEnter Path from Root of File to Change Permissions For : ");
            String dir = Console.ReadLine();

            wrapper.setPath(dir);
        }