首页 > 开发 > 综合 > 正文

Visual C#程序设计技巧小结

2024-07-21 02:26:41
字体:
来源:转载
供稿:网友
菜鸟学堂:
获取文件的版本信息:

fileversioninfo myfileversioninfo1 = fileversioninfo.getversioninfo("d://test.dll");
textbox1.text="版本号: " + myfileversioninfo1.fileversion;

  更改文件属性,删除只读文件:

  下例欲将e:/test.txt文件拷贝至d:/tmp/test.txt,但d:/tmp/test.txt已经存在。

//file.copy(sourcefile,destinationfile,true); 用来拷贝文件
//当destinationfile已经存在时,无法将文件file1拷贝到目标文件,
//因此先删除destination文件,file.delete()方法不能删除只读文件,
//因此,如果文件属性为只读(attributes属性中会包含有"readonly"),
//先把文件属性重置为normal,然后再删除:
string file1="e://test.txt";
string destinationfile="d://tmp//test.txt";
if(file.exists(destinationfile))
{
 fileinfo fi=new fileinfo(destinationfile);
 if(fi.attributes.tostring().indexof("readonly")!=-1)
  fi.attributes=fileattributes.normal;
  file.delete(destinationfile);
}
file.copy(file1,destinationfile,true);

  c#中字符串的格式化及转换成数值的方法

  字符串转换成数字,比如"1234"转换成数字1234:

string str="1234";
int i=convert.toint32(str);

  格式化字符串,向长度小于30的字符串末尾添加特定字符,补足n个字符,使用string类的padright(int,char)方法:

string str="1234";
str=str.padright(30,' ') //向长度小于30的字符串末尾添加空格,补足30个字符

  按行读写文件

  判断文件是否存在:file.exists(string filepath)

  判断目录是否存在:directory.exists("d://lastestversion")

  按行读取文件:

int filecount=0;
// open the file just specified such that no one else can use it.
streamreader sr = new streamreader(textbox1.text.trim());
while(sr.peek() > -1)//streamreader.peek()返回下一个可用字符,但不使用它
{
 listbox1.items.add(sr.readline());
 filecount++;
}
sr.close();

  按行写入文件:

streamwriter sw = new streamwriter("d://result.txt");
for(int i=0;i<10;i++)
{
 sw.writeline("这是第"+i.tostring()+"行数据");
}

  文件目录对话框的使用

  文件对话框即过滤条件的使用:

string resultfile="";
openfiledialog openfiledialog1 = new openfiledialog();
openfiledialog1.initialdirectory = "d://patch" ;
openfiledialog1.filter = "all files (*.*)|*.*|txt files (*.txt)|*.txt" ;
openfiledialog1.filterindex = 2 ;
openfiledialog1.restoredirectory = true ;
if(openfiledialog1.showdialog() == dialogresult.ok)
resultfile=openfiledialog1.filename;

  目录对话框的使用:

string resultfolder="";
folderbrowserdialog openfolderdialog1=new folderbrowserdialog();
openfolderdialog1.rootfolder=environment.specialfolder.mycomputer;
if(openfolderdialog1.showdialog()==dialogresult.ok)
resultfolder=openfolderdialog1.selectedpath;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表