要进行“网络硬盘”功能设计,首先要熟悉.net中处理文件和文件夹的操作。file类和directory类是其中最主要的两个类。了解它们将对后面功能的实现提供很大的便利。
system.io.file类和system.io.fileinfo类
在设计和实现“网络硬盘”的过程中,将大量地使用和文件系统操作相关的内容。故本节先对和文件系统相关的两个.net类进行简要介绍。
system.io.file类和system.io.fileinfo类主要提供有关文件的各种操作,在使用时需要引用system.io命名空间。下面通过程序实例来介绍其主要属性和方法。
(1) 文件打开方法:file.open
该方法的声明如下:
public static filestream open(string path,filemode mode) |
下面的代码打开存放在c:\tempuploads目录下名称为newfile.txt文件,并在该文件中写入hello。
private void openfile() { filestream.textfile=file.open(@”c:\tempuploads\newfile.txt”,filemode.append); byte [] info = {(byte)h,(byte)e,(byte)l,(byte)l,(byte)o}; textfile.write(info,0,info.length); textfile.close(); } |
(2) 文件创建方法:file.create
该方法的声明如下:
public static filestream create(string path;) |
下面的代码演示如何在c:\tempuploads下创建名为newfile.txt的文件。
由于file.create方法默认向所有用户授予对新文件的完全读/写访问权限,所以文件是用读/写访问权限打开的,必须关闭后才能由其他应用程序打开。为此,所以需要使用filestream类的close方法将所创建的文件关闭。
private void makefile() { filestream newtext=file.create(@”c:\tempuploads\newfile.txt”); newtext.close(); } |
(3) 文件删除方法:file.delete
该方法声明如下:
public static void delete(string path); |
下面的代码演示如何删除c:\tempuploads目录下的newfile.txt文件。
private void deletefile() { file.delete(@”c:\tempuploads\newfile.txt”); } |
(4) 文件复制方法:file.copy
该方法声明如下:
public static void copy(string sourcefilename,string destfilename,bool overwrite); |
下面的代码将c:\tempuploads\newfile.txt复制到c:\tempuploads\backup.txt。
由于cope方法的overwrite参数设为true,所以如果backup.txt文件已存在的话,将会被复制过去的文件所覆盖。
private void copyfile() { file.copy(@”c:\tempuploads\newfile.txt”,@”c:\tempuploads\backup.txt”,true); } |
(5) 文件移动方法:file.move
该方法声明如下:
public static void move(string sourcefilename,string destfilename); |
下面的代码可以将c:\tempuploads下的backup.txt文件移动到c盘根目录下。
注意:
只能在同一个逻辑盘下进行文件转移。如果试图将c盘下的文件转移到d盘,将发生错误。
private void movefile() { file.move(@”c:\tempuploads\backup.txt”,@”c:\backup.txt”); } |
(6) 设置文件属性方法:file.setattributes
该方法声明如下:
public static void setattributes(string path,fileattributes fileattributes); |
下面的代码可以设置文件c:\tempuploads\newfile.txt的属性为只读、隐藏。
private void setfile() { file.setattributes(@”c:\tempuploads\newfile.txt”, fileattributes.readonly|fileattributes.hidden); } |
文件除了常用的只读和隐藏属性外,还有archive(文件存档状态),system(系统文件),temporary(临时文件)等。关于文件属性的详细情况请参看msdn中fileattributes的描述。
(7) 判断文件是否存在的方法:file.exist
该方法声明如下:
public static bool exists(string path); |
下面的代码判断是否存在c:\tempuploads\newfile.txt文件。若存在,先复制该文件,然后其删除,最后将复制的文件移动;若不存在,则先创建该文件,然后打开该文件并进行写入操作,最后将文件属性设为只读、隐藏。
if(file.exists(@”c:\tempuploads\newfile.txt”)) //判断文件是否存在 { copyfile(); //复制文件 deletefile(); //删除文件 movefile(); //移动文件 } else { makefile(); //生成文件 openfile(); //打开文件 setfile(); //设置文件属性 } |
此外,file类对于text文本提供了更多的支持。
· appendtext:将文本追加到现有文件
· createtext:为写入文本创建或打开新文件
· opentext:打开现有文本文件以进行读取
但上述方法主要对utf-8的编码文本进行操作,从而显得不够灵活。在这里推荐读者使用下面的代码对txt文件进行操作。
· 对txt文件进行“读”操作,示例代码如下:
streamreader txtreader = new streamreader(@”c:\tempuploads\newfile.txt”,system.text.encoding.default); string filecontent; filecontent = txtreader.readend(); txtreader.close(); |
· 对txt文件进行“写”操作,示例代码如下:
streamwriter = new streamwrite(@”c:\tempuploads\newfile.txt”,system.text.encoding.default); string filecontent; txtwriter.write(filecontent); txtwriter.close(); |
system.io.directory类和system.directoryinfo类
主要提供关于目录的各种操作,使用时需要引用system.io命名空间。下面通过程序实例来介绍其主要属性和方法。
(1) 目录创建方法:directory.createdirectory
该方法声明如下:
public static directoryinfo createdirectory(string path); |
下面的代码演示在c:\tempuploads文件夹下创建名为newdirectory的目录。
private void makedirectory() { directory.createdirectory(@”c:\tempuploads\newdirectoty”); } |
(2) 目录属性设置方法:directoryinfo.atttributes
下面的代码设置c:\tempuploads\newdirectory目录为只读、隐藏。与文件属性相同,目录属性也是使用fileattributes来进行设置的。
private void setdirectory() { directoryinfo newdirinfo = new directoryinfo(@”c:\tempuploads\newdirectoty”); newdirinfo.atttributes = fileattributes.readonly|fileattributes.hidden; } |
(3) 目录删除方法:directory.delete
该方法声明如下:
public static void delete(string path,bool recursive); |
下面的代码可以将c:\tempuploads\backup目录删除。delete方法的第二个参数为bool类型,它可以决定是否删除非空目录。如果该参数值为true,将删除整个目录,即使该目录下有文件或子目录;若为false,则仅当目录为空时才可删除。
private void deletedirectory() { directory.delete(@”c:\tempuploads\backup”,true); } |
(4) 目录移动方法:directory.move
该方法声明如下:
public static void move(string sourcedirname,string destdirname); |
下面的代码将目录c:\tempuploads\newdirectory移动到c:\tempuploads\backup。
private void movedirectory() { file.move(@”c:\tempuploads\newdirectory”,@”c:\tempuploads\backup”); } |
(5) 获取当前目录下的所有子目录方法:directory.getdirectories
该方法声明如下:
public static string[] getdirectories(string path;); |
下面的代码读出c:\tempuploads\目录下的所有子目录,并将其存储到字符串数组中。
private void getdirectory() { string [] directorys; directorys = directory. getdirectories (@”c:\tempuploads”); } |
(6) 获取当前目录下的所有文件方法:directory.getfiles
该方法声明如下:
public static string[] getfiles(string path;); |
下面的代码读出c:\tempuploads\目录下的所有文件,并将其存储到字符串数组中。
private void getfile() { string [] files; files = directory. getfiles (@”c:\tempuploads”,); } |
(7) 判断目录是否存在方法:directory.exist
该方法声明如下:
public static bool exists( string path; ); |
下面的代码判断是否存在c:\tempuploads\newdirectory目录。若存在,先获取该目录下的子目录和文件,然后其移动,最后将移动后的目录删除。若不存在,则先创建该目录,然后将目录属性设为只读、隐藏。
if(file.exists(@”c:\tempuploads\newdirectory”)) //判断目录是否存在 { getdirectory(); //获取子目录 getfile(); //获取文件 movedirectory(); //移动目录 deletedirectory(); //删除目录 } else { makedirectory(); //生成目录 setdirectory(); //设置目录属性 } |
注意:
路径有3种方式,当前目录下的相对路径、当前工作盘的相对路径、绝对路径。以c:\tmp\book为例(假定当前工作目录为c:\tmp)。“book”,“\tmp\book”,“c:\tmp\book”都表示c:\tmp\book。
另外,在c#中 “\”是特殊字符,要表示它的话需要使用“\\”。由于这种写法不方便,c#语言提供了@对其简化。只要在字符串前加上@即可直接使用“\”。所以上面的路径在c#中应该表示为“book”,@“\tmp\book”,@“c:\tmp\book”。