c#自定义文件类型

如何在客户端创建自己需要的文件类型并操作
2024-11-30 01:39:34
推荐回答(4个)
回答1:

我通过FileTypeRegister静态类来完成这些功能。首先,将注册需要用到的信息封装成FileTypeRegInfo,定义如下:
public class FileTypeRegInfo
{
///
/// 目标类型文件的扩展名
///

public string ExtendName ; //".xcf"
///
/// 目标文件类型说明
///

public string Description ; //"XCodeFactory项目文件"
///
/// 目标类型文件关联的图标
///

public string IcoPath ;
///
/// 打开目标类型文件的应用程序
///

public string ExePath ;
public FileTypeRegInfo()
{
}
public FileTypeRegInfo(string extendName)
{
this.ExtendName = extendName ;
}
}
FileTypeRegister类主要是操作注册表中的内容,实现如下:
///
/// FileTypeRegister 用于注册自定义的文件类型。
/// zhuweisky 2005.08.31
///

public class FileTypeRegister
{
RegisterFileType#region RegisterFileType
///
/// RegisterFileType 使文件类型与对应的图标及应用程序关联起来。
///

public static void RegisterFileType(FileTypeRegInfo regInfo)
{
if(RegistryHelper.FileTypeRegistered(regInfo.ExtendName))
{
return ;
}
string relationName = regInfo.ExtendName.Substring(1 ,regInfo.ExtendName.Length-1).ToUpper() + "_FileType" ;
RegistryKey fileTypeKey = Registry.ClassesRoot.CreateSubKey(regInfo.ExtendName) ;
fileTypeKey.SetValue("" ,relationName) ;
fileTypeKey.Close() ;
RegistryKey relationKey = Registry.ClassesRoot.CreateSubKey(relationName) ;
relationKey.SetValue("" ,regInfo.Description) ;
RegistryKey iconKey = relationKey.CreateSubKey("DefaultIcon") ;
iconKey.SetValue("" ,regInfo.IcoPath) ;
RegistryKey shellKey = relationKey.CreateSubKey("Shell") ;
RegistryKey openKey = shellKey.CreateSubKey("Open") ;
RegistryKey commandKey = openKey.CreateSubKey("Command") ;
commandKey.SetValue("" ,regInfo.ExePath + " %1") ;
relationKey.Close() ;
}
///
/// GetFileTypeRegInfo 得到指定文件类型关联信息
///

public static FileTypeRegInfo GetFileTypeRegInfo(string extendName)
{
if(! RegistryHelper.FileTypeRegistered(extendName))
{
return null ;
}
FileTypeRegInfo regInfo = new FileTypeRegInfo(extendName) ;
string relationName = extendName.Substring(1 ,extendName.Length-1).ToUpper() + "_FileType" ;
RegistryKey relationKey = Registry.ClassesRoot.OpenSubKey(relationName) ;
regInfo.Description = relationKey.GetValue("").ToString() ;
RegistryKey iconKey = relationKey.OpenSubKey("DefaultIcon") ;
regInfo.IcoPath = iconKey.GetValue("").ToString();
RegistryKey shellKey = relationKey.OpenSubKey("Shell") ;
RegistryKey openKey = shellKey.OpenSubKey("Open") ;
RegistryKey commandKey = openKey.OpenSubKey("Command") ;
string temp = commandKey.GetValue("").ToString() ;
regInfo.ExePath = temp.Substring(0 ,temp.Length-3) ;
return regInfo ;
}
///
/// UpdateFileTypeRegInfo 更新指定文件类型关联信息
///

public static bool UpdateFileTypeRegInfo(FileTypeRegInfo regInfo)
{
if(! RegistryHelper.FileTypeRegistered(regInfo.ExtendName))
{
return false ;
}
string extendName = regInfo.ExtendName ;
string relationName = extendName.Substring(1 ,extendName.Length-1).ToUpper() + "_FileType" ;
RegistryKey relationKey = Registry.ClassesRoot.OpenSubKey(relationName ,true) ;
relationKey.SetValue("" ,regInfo.Description) ;
RegistryKey iconKey = relationKey.OpenSubKey("DefaultIcon" ,true) ;
iconKey.SetValue("" ,regInfo.IcoPath);
RegistryKey shellKey = relationKey.OpenSubKey("Shell") ;
RegistryKey openKey = shellKey.OpenSubKey("Open") ;
RegistryKey commandKey = openKey.OpenSubKey("Command" ,true) ;
commandKey.SetValue("" ,regInfo.ExePath + " %1") ;
relationKey.Close() ;
return true ;
}
///
/// FileTypeRegistered 指定文件类型是否已经注册
///

public static bool FileTypeRegistered(string extendName)
{
RegistryKey softwareKey = Registry.ClassesRoot.OpenSubKey(extendName);
if(softwareKey != null)
{
return true ;
}
return false ;
}
#endregion
}
要注意的是commandKey.SetValue("" ,regInfo.ExePath + " %1") ;其中" %1"表示将被双击的文件的路径传给目标应用程序,这样在双击a.xcf文件时,XCodeFactory才知道要打开哪个文件,所以应用程序的Main方法要被改写为带有参数的形式,就像下面的样子:
[STAThread]
static void Main(string[] args)
{
if((args!= null) && (args.Length > 0))
{
string filePath = "" ;
for(int i=0 ;i{
filePath += " " + args[i] ;
}
MainForm.XcfFilePath = filePath.Trim() ;
}
Application.Run(new MainForm());
}
关于自定义文件类型的注册,本文实现的是最基本的功能,如果需要更多的高级功能,也可以类推实现之。

回答2:

写文件时把后缀名指定为你的后缀(比如.myfile),
然后修改注册表,把这个后缀名注册进系统,并把后缀名关联到你的程序;
以后你可以双击该类文件,系统自动启动你的程序打开它。

回答3:

其实你创建文件的时候就可以在后面加上自己定义的扩展名,只不过你不序列化这个文件的话里面的内容可以通过记事本打开,序列化后里面就是二进制的代码,你读取的时候反序列化即可

回答4:

创建文件的时候把后缀名写为你指定的后缀,比如.abc之类,最好区别与系统已知的文件类型,根据生成的文件类型决定其数据类型及存储方式