日期:2014-05-19  浏览次数:21255 次

c#访问路径问题,The path is not of a legal form.
把总配置文件得到目录   ,然后放到ArrayList里面,然后再读出来,

                public   static   void   Run(ArrayList     ss)
                {
                        foreach   (string   s   in   ss)
                        {                            
                                        FileSystemWatcher   watcher   =   new   FileSystemWatcher();
                                        watcher.Path   =   s;//@ "d:\DownLoads ";//args[1];
                                        /*   Watch   for   changes   in   LastAccess   and   LastWrite   times,   and  
                                              the   renaming   of   files   or   directories.   */
                                        //watcher.NotifyFilter   =   NotifyFilters.LastAccess   |   NotifyFilters.LastWrite
                                        //       |   NotifyFilters.FileName   |   NotifyFilters.DirectoryName;
                                        ////   Only   watch   text   files.
                                        watcher.Filter   =   "*.flv ";

                                        //   Add   event   handlers.
                                        //watcher.Changed   +=   new   FileSystemEventHandler(OnChanged);
                                        watcher.Created   +=   new   FileSystemEventHandler(OnCreated);
                                        //watcher.Deleted   +=   new   FileSystemEventHandler(OnChanged);
                                        //watcher.Renamed   +=   new   RenamedEventHandler(OnChanged);

            &