#include <stdlib.h>
char CopyFile()//申明函数
void main()
{
system("mkdir C:\\aa")//创建文件夹
CopyFile()
}
char CopyFile()
{
FILE *fp1,*fp2
char c
char source[20],destine[20]
printf("please input source filename:")
scanf("%s",source)
if((fp1=fopen(source ,"r"))==NULL)
{
printf("error opening file %s\n",source)
exit(0)
}
if((fp2=fopen(destine ,"w"))==NULL)
{
printf("error opening file %s\n",destine)
exit(0)
}
while(!feof(fp1))
{
c=fgetc(fp1)
fputc(c,fp2)
}
printf("\nok!\n")
fclose(fp1)
fclose(fp2)
return c
}
可以的,有很多软件打包程序,可以将乱七八糟的安装文件打包成一个安装包。推荐一些这方面的工具吧。1、Advanced Installer
2、Setup Factory
3、Smart Install Maker
企业应用的推荐:
Nullsoft、InstallShield,Advanced Installer
System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection()pfc.AddFontFile(fontFile)//fontFile为你的字体文件的路径,如果有多个字体文件可以继续添加
Font myFont = new Font(pfc.Families[0], 20f, FontStyle.Regular, GraphicsUnit.Point, 0)//myFont就是你创建的字体对象
在xp系统下,把pfc声明为项目的全局变量,否则会引起一个错误。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)