ClassFileSystemIt.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Collections;
- namespace XunLong.IndexBuilder
- {
- /*
- ' 迅龙中文分类搜索引擎 v0.6
- '
- ' LGPL 许可发行
- '
- ' 宁夏大学 张冬 康彩 zd4004@163.com
- '
- ' 官网 http://blog.163.com/zd4004/
- */
- /// <summary>
- /// 静态的文件系统
- /// </summary>
- public static class ClassFileSystemIt
- {
- /// <summary>
- /// 定义存储类
- /// </summary>
- private static NetHashTableAPI.ClassNHT myDB = new NetHashTableAPI.ClassNHT();
- public static void SetClassNHT(string dir, int size, string k_c_path)
- {
- // 设置文件系统
- myDB.SetClassNHT(dir, 3145727, k_c_path);
- }
- /// <summary>
- /// 得到文件列表
- /// </summary>
- /// <param name="txt"></param>
- /// <returns></returns>
- public static ArrayList SearchOneList(string txt)
- {
- return myDB.SearchOneList("http://");
- }
- /// <summary>
- /// 得到值
- /// </summary>
- /// <param name="key"></param>
- /// <returns></returns>
- public static string Value(string key)
- {
- try
- {
- return myDB.Value(key);
- }
- catch
- {
- return "";
- }
- }
- }
-
- }