# File lib_core/rucy/priv.rb, line 66
    def touch(path, no_create=false)
      if (@File.exist? path) then
        chown(path)
      else
        unless (no_create) then
          @File.open(path, File::WRONLY | File::CREAT | File::EXCL) {}
          chown(path)
        end
      end

      nil
    end