예제 #1
0
파일: Entity.cs 프로젝트: Sebb767/zserv
        /// <summary>
        /// Initializes a new instance of the <see cref="zserv.filesytem.Entity"/> class.
        /// </summary>
        /// <param name="parser">A parser for all matching directives.</param>
        /// <param name="absolutePath">The absolute path to the file/dir.</param>
        /// <param name="relativePath">Relative path.</param>
        /// <param name="directiveString">Directive string.</param>
        public Entity(DirectiveParser parser, string absolutePath, string relativePath, string directiveString)
        {
            path = absolutePath;
            this.relativePath = relativePath;

            // parse permissions
        }
예제 #2
0
 public DirectiveList(DirectiveParser presets, string path)
 {
     throw new NotImplementedException ();
 }